From 38abe90f156f9d2efe9fd48862ac23804f0bbc16 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Mon, 26 Apr 2004 18:49:31 -0400 Subject: [PATCH] ENH: Add extra test files --- Tests/SubDir/AnotherSubdir/secondone.c | 4 ++++ Tests/SubDir/AnotherSubdir/testfromsubdir.c | 10 ++++++++++ 2 files changed, 14 insertions(+) create mode 100644 Tests/SubDir/AnotherSubdir/secondone.c create mode 100644 Tests/SubDir/AnotherSubdir/testfromsubdir.c diff --git a/Tests/SubDir/AnotherSubdir/secondone.c b/Tests/SubDir/AnotherSubdir/secondone.c new file mode 100644 index 000000000..b55d05f43 --- /dev/null +++ b/Tests/SubDir/AnotherSubdir/secondone.c @@ -0,0 +1,4 @@ +const char* secondone() +{ + return "Hello again"; +} diff --git a/Tests/SubDir/AnotherSubdir/testfromsubdir.c b/Tests/SubDir/AnotherSubdir/testfromsubdir.c new file mode 100644 index 000000000..b784b1622 --- /dev/null +++ b/Tests/SubDir/AnotherSubdir/testfromsubdir.c @@ -0,0 +1,10 @@ +#include + +const char* secondone(); + +int main() +{ + printf("Hello from subdirectory\n"); + printf("SO: %s\n", secondone()); + return 0; +}