diff options
Diffstat (limited to 'Tests/OutOfSource/OutOfSourceSubdir/simple.cxx')
-rw-r--r-- | Tests/OutOfSource/OutOfSourceSubdir/simple.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/OutOfSource/OutOfSourceSubdir/simple.cxx b/Tests/OutOfSource/OutOfSourceSubdir/simple.cxx index 1482f27..cfb1f1a 100644 --- a/Tests/OutOfSource/OutOfSourceSubdir/simple.cxx +++ b/Tests/OutOfSource/OutOfSourceSubdir/simple.cxx @@ -1,4 +1,10 @@ +#include "testlib.h" + int main () { + if(TestLib() != 1.0) + { + return -1; + } return 0; } |