[llvm-commits] [test-suite] r58153 - /test-suite/trunk/MultiSource/Applications/sqlite3/Makefile

Dan Gohman gohman at apple.com
Sat Oct 25 14:37:24 PDT 2008


Author: djg
Date: Sat Oct 25 16:37:24 2008
New Revision: 58153

URL: http://llvm.org/viewvc/llvm-project?rev=58153&view=rev
Log:
Don't redirect stdout to /dev/null. This lets the output be included
in the test comparison.

Modified:
    test-suite/trunk/MultiSource/Applications/sqlite3/Makefile

Modified: test-suite/trunk/MultiSource/Applications/sqlite3/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Applications/sqlite3/Makefile?rev=58153&r1=58152&r2=58153&view=diff

==============================================================================
--- test-suite/trunk/MultiSource/Applications/sqlite3/Makefile (original)
+++ test-suite/trunk/MultiSource/Applications/sqlite3/Makefile Sat Oct 25 16:37:24 2008
@@ -6,7 +6,7 @@
 CPPFLAGS += -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=0 -DHAVE_FDATASYNC=0 -DHAVE_USLEEP=0 -DHAVE_LOCALTIME_R=0 -DHAVE_GMTIME_R=0 -DHAVE_READLINE=0 -I. -DSQLITE_THREADSAFE=0 -DSQLITE_OMIT_LOAD_EXTENSION=1
 LDFLAGS =
 STDIN_FILENAME = $(PROJ_SRC_DIR)/commands
-RUN_OPTIONS = :memory: >/dev/null
+RUN_OPTIONS = :memory:
 
 include $(LEVEL)/Makefile.config
 





More information about the llvm-commits mailing list