diff options
Diffstat (limited to 'libhello/tests/basics')
-rw-r--r-- | libhello/tests/basics/buildfile | 2 | ||||
-rw-r--r-- | libhello/tests/basics/driver.cxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libhello/tests/basics/buildfile b/libhello/tests/basics/buildfile index a436a8c..e8cc422 100644 --- a/libhello/tests/basics/buildfile +++ b/libhello/tests/basics/buildfile @@ -1,3 +1,3 @@ import libs = libhello%lib{hello} -exe{driver}: {hxx ixx txx cxx}{*} $libs +exe{driver}: {hxx ixx txx cxx}{**} $libs testscript{**} diff --git a/libhello/tests/basics/driver.cxx b/libhello/tests/basics/driver.cxx index 1f0a479..a7ef847 100644 --- a/libhello/tests/basics/driver.cxx +++ b/libhello/tests/basics/driver.cxx @@ -5,11 +5,11 @@ #include <libhello/version.hxx> #include <libhello/hello.hxx> -using namespace std; -using namespace hello; - int main () { + using namespace std; + using namespace hello; + // Basics. // { |