diff options
author | LAN-TW <lantw44@gmail.com> | 2013-12-07 20:29:51 +0800 |
---|---|---|
committer | LAN-TW <lantw44@gmail.com> | 2013-12-07 20:29:51 +0800 |
commit | 39b80dfe6ff2f8c9e6615dd095e26c093ae34856 (patch) | |
tree | 16d10827fc3cfc83ca4e91d92167bb468aab22a1 | |
parent | 39b5825ff56c7bfbafad00f6c7afcfb4eec4b7e8 (diff) | |
download | l4basic-39b80dfe6ff2f8c9e6615dd095e26c093ae34856.tar.gz l4basic-39b80dfe6ff2f8c9e6615dd095e26c093ae34856.tar.zst l4basic-39b80dfe6ff2f8c9e6615dd095e26c093ae34856.zip |
Print message if test-file is successful
-rw-r--r-- | test-file.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test-file.c b/test-file.c index 42f5ef8..587d7a9 100644 --- a/test-file.c +++ b/test-file.c @@ -45,5 +45,6 @@ int main () { wait (&status); assert (WIFEXITED (status) && WEXITSTATUS (status) == 0); + puts ("test-file => PASS!"); return 0; } |