repo.or.cz
/
supercollider.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cmake: supernova - missing include_directories() for Jack
[supercollider.git]
/
external_libraries
/
yaml-cpp-0.2.6
/
test
/
tests.cpp
blob
b2c2d13560cb66bd7776c88b9dbdc761bfe0ec7f
1
#include
"tests.h"
2
#include
"emittertests.h"
3
#include
"parsertests.h"
4
#include
"spectests.h"
5
#include
"yaml-cpp/yaml.h"
6
#include <fstream>
7
#include <sstream>
8
#include <vector>
9
#include <iostream>
10
11
namespace
Test
12
{
13
void
RunAll
()
14
{
15
bool
passed
=
true
;
16
if
(!
RunParserTests
())
17
passed
=
false
;
18
19
if
(!
RunEmitterTests
())
20
passed
=
false
;
21
22
if
(!
RunSpecTests
())
23
passed
=
false
;
24
25
if
(
passed
)
26
std
::
cout
<<
"All tests passed!
\n
"
;
27
}
28
}
29