otest(1) BSD General Commands Manual otest(1)NAME
otest -- SenTestingKit, OCUnit.
SYNOPSIS
otest [-SenTest Self | All | None | <TestCaseClassName/testMethodName>] path
DESCRIPTION
otest runs the unit tests found in the bundle given at path.
ARGUMENTS -SenTest value This flag denotes the scope of the unit test to be run. Possible values are Self, All, None and <TestCaseClassName/test-
MethodName>. The default value is Self.
path Path to the bundle that contains the unit tests.
OBJECTIVE-C GARBAGE COLLECTION
otest is built with support for Objective-C garbage collection. Due to the "whole process" nature of Objective-C garbage collection, invok-
ing otest from the command line or an IDE or debugger will run otest with garbage collection enabled. Doing so requires that the bundle con-
taining the unit tests also be built with support for garbage collection.
To avoid this requirement and disable garbage collection, run otest in an environment with the OBJC_DISABLE_GC environment variable set to
YES.
ENVIRONMENT
OBJC_DISABLE_GC Set to YES to disable Objective-C garbage collection for otest when running test bundles that do not use it.
FILES
/Developer/Tools/RunTargetUnitTests A script that calls otest with the correct arguments for use with Xcode.
SEE ALSO RunTargetUnitTests(1), otest(1)Xcode June 2, 2019 Xcode
Check Out this Related Man Page
EXTRACTOR(1) The Canonical Csound Reference EXTRACTOR(1)NAME
extractor - Extract a section of audio from an audio file. .
DESCRIPTION
Extract a section of audio, by time or sample, from an existing sound file.
SYNTAX
extractor [OPTIONS ... ] infile
INITIALIZATION
Flags:
o -S integer = Start the extract at the given sample number.
o -Z integer = End the extract at the given sample number.
o - Q integer = Extract given number of samples.
o -T fpnum = Start the extract at the given time in seconds.
o -E fpnum = End the extract at the given time in seconds.
o -D fpnum = Extract given time in seconds.
o -v = Verbose mode.
o -R = Continually rewrite the header while writing soundfile (WAV/AIFF).
o -H integer = Show a "heart-beat" to indicate progress, in style 1, 2 or 3.
o -N = Alert call (usually ringing the bell) when finished.
o -v = Verbose mode.
o -o fname = output file name (default: test.wav)
EXAMPLES
The default values are
extractor -S 0 -Z end-of-file -otest
For example
extractor -S 10234 -D 2.13 in.aiff -o out.wav
This creates a new sound file taken from sample 10234 and lasting 2.13 seconds.
CREDITS
Author: John ffitch
1994
AUTHORS
Barry Vercoe
MIT Media Lab
Author.
Dan Ellis
MIT Media Lab,
Cambridge
Massachussetts
Author.
COPYRIGHT 5.07 06/23/2009 EXTRACTOR(1)
I would like to pull a column from a file and place it in a variable:
The file would look like this:
N.Korea gibberish garbage
S.Korea gibberish garbage
USA gibberish garbage
Iraq gibberish garbage
Canada gibberish garbage
and items in the first... (8 Replies)
Hi everyone,
Im trying to make a new directory based on a name given in a file called directory_file which contains the following content:
garbage gargbage
Directory: running
more garbage gargbage
more garbage gargbage
more garbage gargbage
So basically i have a shell script that... (3 Replies)
Hello,
Whenever I transfer files between machines, I find a garbage character (^M) being appended to the end of every line of the file.
Can you suggest a script wherein I can eliminate the garbage character.
I tried sed 's/^M//g' < filename > filename1
...but it doesn't work. Also, this... (4 Replies)
Hi all ,
I am new to HP-UX flavour of unix.
i am issuing simple "vi" comand on the command prompt it is showing me some garbage character in command prompt itself ..unreadable format.
I tried opening an existing file using the vi editor --and same thing
... (3 Replies)
Hello,
I have a variable that displays the following results from a JVM....
1602100K->1578435K
I would like to collect the value of 1578435 which is the value after a garbage collection. I've tried the following command but it looks like I can't get the > to work. Any suggestions as... (4 Replies)
i have my application running on AIX box (configuration given below)
My application does garbage collection pretty well, as such the memory free shows 500 MB - 700 MB freed up in the log statements printed in the application, but the nmon shows the physical space going upwards and does not reflect... (1 Reply)
i have my application running on AIX box (configuration given below)
My application does garbage collection pretty well, as such the memory free shows 500 MB - 700 MB freed up in the log statements printed in the application, but the nmon shows the physical space going upwards and does not reflect... (1 Reply)
I am working on garbage collector in C?
How should :confused: I find the part of heap where the variable are stored. It there any compiler (GCC) support for this. (2 Replies)
Hi All,
char a="\0";
a) a contains \0
a contains garbage value
b) a contains \
a contains 0
a contains garbage value
Pls, let me know correct result is a or b. I guess a.
Thanks,
Naga:cool: (2 Replies)
Hello Everyone,
I am new to UNIX. I have got a requirement. Thought of posting it in this forum so that someone might help me. Please have a look at the scenario.
The Objective is to "classify books into four seperate files and then print a summary report".
Specifications are as... (3 Replies)
I know we are supposed to be using UNIX as a collection of tools but are there any big applications where I can run/test C programs without exposing the poor things to the outside world? :D (3 Replies)
Hello all, I am new to programming and currently I am taking a swing at Objective-C. I easily compile my programs on my Macintosh, and have compiled some Objective-C programs on my linux box.
The problem I am having is when I try to use features demonstrated in the book Programming in... (4 Replies)
I need to write a python script that will
look at the local gc logs.
6 sys=0.00, real=0.06 secs]
2019-06-05T07:43:12.029-0500: 1072696.494: 2791209K->1995953K(2796544K)] 2803355K->1995953K(4164608K), , 3.0299555 secs]
2019-06-05T07:43:17.149-0500: 1072701.614: 3334321K->2008193K(4167680K),... (1 Reply)