From 8c6d06f186156338fbd59e0febfd0c57ad8afc87 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Wed, 14 Apr 2004 23:44:24 +0000 Subject: [PATCH] ICU-3499 Make sure that Makefiles can respond to a failure. X-SVN-Rev: 14971 --- icu4c/source/test/iotest/iotest.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/icu4c/source/test/iotest/iotest.cpp b/icu4c/source/test/iotest/iotest.cpp index 73b9cb60bf1..0213be8afec 100644 --- a/icu4c/source/test/iotest/iotest.cpp +++ b/icu4c/source/test/iotest/iotest.cpp @@ -381,6 +381,7 @@ int main(int argc, char* argv[]) if (remove(STANDARD_TEST_FILE) != 0) { /* Maybe someone didn't close the file correctly. */ fprintf(stderr, "FAIL: Could not delete %s\n", STANDARD_TEST_FILE); + nerrors += 1; } } }