From: Bodo Möller Date: Thu, 24 Feb 2000 09:48:12 +0000 (+0000) Subject: Avoid filename "test.c" because otherwise "make test" X-Git-Tag: OpenSSL_0_9_5beta2~94 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=331b59214b5d747e088dfd1d99dfa4deb5976786;ds=sidebyside Avoid filename "test.c" because otherwise "make test" will invoke a default rule built into make. --- diff --git a/util/selftest.pl b/util/selftest.pl index beb36b1a9e..91e962a312 100644 --- a/util/selftest.pl +++ b/util/selftest.pl @@ -75,21 +75,21 @@ print OUT "Compiler: $cversion\n"; print OUT "\n"; print "Checking compiler...\n"; -if (open(TEST,">test.c")) { +if (open(TEST,">cctest.c")) { print TEST "#include \nmain(){printf(\"Hello world\\n\");}\n"; close(TEST); - system("$cc -o cctest test.c"); + system("$cc -o cctest cctest.c"); if (`./cctest` !~ /Hello world/) { print OUT "Compiler doesn't work.\n"; goto err; } } else { - print OUT "Can't create test.c\n"; + print OUT "Can't create cctest.c\n"; } -if (open(TEST,">test.c")) { +if (open(TEST,">cctest.c")) { print TEST "#include \nmain(){printf(OPENSSL_VERSION_TEXT);}\n"; close(TEST); - system("$cc -o cctest -Iinclude test.c"); + system("$cc -o cctest -Iinclude cctest.c"); $cctest = `./cctest`; if ($cctest !~ /OpenSSL $version/) { if ($cctest =~ /OpenSSL/) { @@ -100,7 +100,7 @@ if (open(TEST,">test.c")) { goto err; } } else { - print OUT "Can't create test.c\n"; + print OUT "Can't create cctest.c\n"; } print "Running make...\n";