summaryrefslogtreecommitdiffstats
path: root/fastos/src/tests/filetest.cpp
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahoo-inc.com>2016-06-30 13:28:08 +0200
committerArne H Juul <arnej@yahoo-inc.com>2016-06-30 15:02:12 +0200
commit419578bee89068645051556ea591ddeda34aaa85 (patch)
tree4d3aad651a21c440511479c15142ecb071fb5725 /fastos/src/tests/filetest.cpp
parentec03bb7d9f40d4cc4ea5a66bd2553588a6195f0b (diff)
return 0 only if all ok
Diffstat (limited to 'fastos/src/tests/filetest.cpp')
-rw-r--r--fastos/src/tests/filetest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fastos/src/tests/filetest.cpp b/fastos/src/tests/filetest.cpp
index 24483076ed0..5b050edcc0b 100644
--- a/fastos/src/tests/filetest.cpp
+++ b/fastos/src/tests/filetest.cpp
@@ -889,7 +889,7 @@ public:
PrintSeparator();
printf("END OF TEST (%s)\n", _argv[0]);
- return 0;
+ return allWasOk() ? 0 : 1;
}
};