summaryrefslogtreecommitdiffstats
path: root/Tests/SimpleInstallS2/inst.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/SimpleInstallS2/inst.cxx')
-rw-r--r--Tests/SimpleInstallS2/inst.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/SimpleInstallS2/inst.cxx b/Tests/SimpleInstallS2/inst.cxx
index a933e2b..241a296 100644
--- a/Tests/SimpleInstallS2/inst.cxx
+++ b/Tests/SimpleInstallS2/inst.cxx
@@ -2,6 +2,7 @@
#include "lib1.h"
#include "lib2.h"
+#include "lib4.h"
#include <stdio.h>
@@ -17,6 +18,11 @@ int main ()
printf("Problem with lib2\n");
return 1;
}
+ if ( Lib4Func() != 4.0 )
+ {
+ printf("Problem with lib4\n");
+ return 1;
+ }
printf("The value of Foo: %s\n", foo);
return SomeFunctionInFoo()-5;
}