From e76b103df7f04de330dec0384743027ded7e82d1 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Tue, 27 Apr 2004 11:08:58 -0400 Subject: ERR: Remove warnings from tests --- Tests/CustomCommand/generator.cxx | 5 +++++ Tests/CustomCommand/wrapper.cxx | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/Tests/CustomCommand/generator.cxx b/Tests/CustomCommand/generator.cxx index 52ffdc3..99da90c 100644 --- a/Tests/CustomCommand/generator.cxx +++ b/Tests/CustomCommand/generator.cxx @@ -2,6 +2,11 @@ int main(int argc, char *argv[]) { + if ( argc < 2 ) + { + fprintf(stderr, "Usage: %s \n", argv[0]); + return 1; + } FILE *fp = fopen(argv[1],"w"); fprintf(fp,"int generated() { return 3; }\n"); diff --git a/Tests/CustomCommand/wrapper.cxx b/Tests/CustomCommand/wrapper.cxx index b472f7f..3a1149d 100644 --- a/Tests/CustomCommand/wrapper.cxx +++ b/Tests/CustomCommand/wrapper.cxx @@ -2,6 +2,11 @@ int main(int argc, char *argv[]) { + if ( argc < 2 ) + { + fprintf(stderr, "Usage: %s \n", argv[0]); + return 1; + } FILE *fp = fopen(argv[1],"w"); fprintf(fp,"int wrapped() { return 5; }\n"); -- cgit v0.12