[llvm-commits] [test-suite] r105411 - /test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/bison/files.c

Jakob Stoklund Olesen stoklund at 2pi.dk
Thu Jun 3 14:03:49 PDT 2010


Author: stoklund
Date: Thu Jun  3 16:03:49 2010
New Revision: 105411

URL: http://llvm.org/viewvc/llvm-project?rev=105411&view=rev
Log:
Don't try to open the Bison skeleton file. This was hardwired to be the same as
the input file (parse.y.in), but without the path.

The file wasn't actually read, as far as I can tell.

Modified:
    test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/bison/files.c

Modified: test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/bison/files.c
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/bison/files.c?rev=105411&r1=105410&r2=105411&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/bison/files.c (original)
+++ test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/bison/files.c Thu Jun  3 16:03:49 2010
@@ -158,8 +158,13 @@
 
   finput = tryopen(infile, "r");
 
+/* JSO: Don't attempt to read the skeleton file for the LLVM test suite. This
+   file is simply appended to the end of the output, so it shouldn't affect the
+   test */
+#if 0
   filename = (char *) getenv ("BISON_SIMPLE");
   fparser = tryopen(filename ? filename : PFILE, "r");
+#endif
 
   if (verboseflag)
     {





More information about the llvm-commits mailing list