From 9be6f4fae6a3623e211df7cf7cdc459cd1d77b0e Mon Sep 17 00:00:00 2001 From: Zoltan Varga Date: Thu, 18 Mar 2010 07:17:47 +0000 Subject: [PATCH] 2010-03-18 Zoltan Varga * Makefile.am (runtest): Save the output of the aot compiler into a file. svn path=/trunk/mono/; revision=153816 --- mono/tests/.gitignore | 2 ++ mono/tests/ChangeLog | 4 ++++ mono/tests/Makefile.am | 4 ++-- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/mono/tests/.gitignore b/mono/tests/.gitignore index bca5d580934..d891ad3243c 100644 --- a/mono/tests/.gitignore +++ b/mono/tests/.gitignore @@ -1,6 +1,8 @@ /Makefile.in /Makefile /*.stdout +/*.stderr +/*.aotlog /.deps /.libs /libtest.la diff --git a/mono/tests/ChangeLog b/mono/tests/ChangeLog index d425c055833..53d7d0083e5 100644 --- a/mono/tests/ChangeLog +++ b/mono/tests/ChangeLog @@ -1,3 +1,7 @@ +2010-03-18 Zoltan Varga + + * Makefile.am (runtest): Save the output of the aot compiler into a file. + 2010-03-05 Robert Jordan * remoting4.cs: Add test for bug #504886. diff --git a/mono/tests/Makefile.am b/mono/tests/Makefile.am index 2302a1ce41a..67cb7f108a4 100644 --- a/mono/tests/Makefile.am +++ b/mono/tests/Makefile.am @@ -585,7 +585,7 @@ runtest: $(TESTSI_CS) $(TESTSI_IL) $(TESTBS) libtest.la $(PREREQSI_IL) $(PREREQS failed_tests="";\ for i in $(TESTSI_CS) $(TESTBS) $(TESTSI_IL); do \ rm -f $${i}.so; \ - if [ x$(AOT) = x1 ]; then if echo $(AOT_DISABLED_TESTS) | grep -v -q $${i}; then $(with_mono_path) $(JITTEST_PROG_RUN) --aot --debug $${i} > /dev/null || exit 1; fi; fi; \ + if [ x$(AOT) = x1 ]; then if echo $(AOT_DISABLED_TESTS) | grep -v -q $${i}; then $(with_mono_path) $(JITTEST_PROG_RUN) --aot --debug $${i} > $${i}.aotlog 2>&1 || exit 1; fi; fi; \ if $(srcdir)/test-driver '$(with_mono_path) $(JITTEST_PROG_RUN)' $$i '$(DISABLED_TESTS)' $(RUNTIME_ARGS); \ then \ passed=`expr $${passed} + 1`; \ @@ -871,4 +871,4 @@ endif libtest_la_SOURCES = libtest.c libtest_la_LIBADD = $(glib_libs) -CLEANFILES = $(TESTSI_CS) $(TESTSI_IL) $(STRESS_TESTS) *.dll *.stdout *.exe stest.dat +CLEANFILES = $(TESTSI_CS) $(TESTSI_IL) $(STRESS_TESTS) *.dll *.stdout *.aotlog *.exe stest.dat -- 2.25.1