Skip to content

Commit

Permalink
AudioGraph: build & test dependencies fixed, but test itself crashes. c…
Browse files Browse the repository at this point in the history
…loses #187 - see #188
  • Loading branch information
nwolek committed Nov 27, 2013
1 parent a0a68f1 commit 95033b0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AudioGraph/library/includes/TTAudioGraphGenerator.h
Expand Up @@ -70,7 +70,7 @@ class TTAUDIOGRAPH_EXPORT TTAudioGraphGenerator : public TTAudioObjectBase
@param returnedTestInfo The outcome from the performed unit test.
@return #TTErr error code if the method fails to execute, else #kTTErrNone.
*/
virtual TTErr test(TTValue& returnedTestInfo);
//virtual TTErr test(TTValue& returnedTestInfo);

};

Expand Down
2 changes: 1 addition & 1 deletion AudioGraph/library/source/TTAudioGraphInput.cpp
Expand Up @@ -25,7 +25,7 @@

#define thisTTClass TTAudioGraphInput
#define thisTTClassName "adc"
#define thisTTClassTags "audioGraphLibrary, audio, graph, input"
#define thisTTClassTags "audio, graph, input"

TT_AUDIO_CONSTRUCTOR
{
Expand Down
2 changes: 1 addition & 1 deletion AudioGraph/library/source/TTAudioGraphOutput.cpp
Expand Up @@ -24,7 +24,7 @@

#define thisTTClass TTAudioGraphOutput
#define thisTTClassName "dac"
#define thisTTClassTags "audioGraphLibrary, audio, graph, output"
#define thisTTClassTags "audio, graph, output"

TT_AUDIO_CONSTRUCTOR,
placeHolder(NULL),
Expand Down
3 changes: 2 additions & 1 deletion AudioGraph/library/tests/split-gain-join.test.cpp
Expand Up @@ -18,7 +18,7 @@
#include "TTAudioGraphGenerator.h"
#include "TTAudioGraphInlet.h" // required for windows build


/*
TTErr TTAudioGraphGenerator::test(TTValue& returnedTestInfo)
{
int errorCount = 0;
Expand Down Expand Up @@ -258,4 +258,5 @@ TTErr TTAudioGraphGenerator::test(TTValue& returnedTestInfo)
// Wrap up the test results to pass back to whoever called this test
return TTTestFinish(testAssertionCount, errorCount, returnedTestInfo);
}
*/

0 comments on commit 95033b0

Please sign in to comment.