- Timestamp:
- Dec 19, 2018, 1:47:03 PM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 84b4d607
- Parents:
- a2dbcff1
- Location:
- tests
- Files:
-
- 9 edited
- 50 moved
Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile.am
ra2dbcff1 r107b01a 16 16 17 17 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 18 ACLOCAL_AMFLAGS = -I automake 18 19 19 20 include $(top_srcdir)/src/cfa.make … … 44 45 .PHONY: list .validate 45 46 .INTERMEDIATE: .validate .validate.cfa 46 EXTRA_PROGRAMS = avl_test # build but do not install47 EXTRA_PROGRAMS = avl_test .dummy_hack # build but do not install 47 48 48 avl_test_SOURCES = avltree/avl_test.c avltree/avl0.c avltree/avl1.c avltree/avl2.c avltree/avl3.c avltree/avl4.c avltree/avl-private.c 49 avl_test_SOURCES = avltree/avl_test.cfa avltree/avl0.cfa avltree/avl1.cfa avltree/avl2.cfa avltree/avl3.cfa avltree/avl4.cfa avltree/avl-private.cfa 50 # automake doesn't know we still need C rules so pretend like we have a C program 51 _dummy_hack_SOURCES = .dummy_hack.c 49 52 50 53 #---------------------------------------------------------------------------------------------------------------- … … 67 70 @echo "int main() { return 0; }" > ${@} 68 71 69 dummy_hack.c: 72 # automake doesn't know we still need C rules so pretend like we have a C program 73 .dummy_hack.c: 70 74 @echo "int main() { return 0; }" > ${@} 71 75 … … 76 80 77 81 # implicit rule so not all test require a rule 78 % : %.c $(CFACC)79 $(PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@})80 81 82 % : %.cfa $(CFACC) 82 83 $(PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) … … 107 108 108 109 #builtins 109 builtins/sync: builtins/sync.c $(CFACC)110 builtins/sync: builtins/sync.cfa $(CFACC) 110 111 $(PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) 2> $(abspath ${@}) -fsyntax-only 111 112 … … 132 133 133 134 # Constructor/destructor tests 134 raii/dtor-early-exit-ERR1: raii/dtor-early-exit.c $(CFACC)135 raii/dtor-early-exit-ERR1: raii/dtor-early-exit.cfa $(CFACC) 135 136 $(PRETTY_PATH) $(CFACOMPILE) -DERR1 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 136 137 137 raii/dtor-early-exit-ERR2: raii/dtor-early-exit.c $(CFACC)138 raii/dtor-early-exit-ERR2: raii/dtor-early-exit.cfa $(CFACC) 138 139 $(PRETTY_PATH) $(CFACOMPILE) -DERR2 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 139 140 140 raii/memberCtors-ERR1: raii/memberCtors.c $(CFACC)141 raii/memberCtors-ERR1: raii/memberCtors.cfa $(CFACC) 141 142 $(PRETTY_PATH) $(CFACOMPILE) -DERR1 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 142 143 143 raii/ctor-autogen-ERR1: raii/ctor-autogen.c $(CFACC)144 raii/ctor-autogen-ERR1: raii/ctor-autogen.cfa $(CFACC) 144 145 $(PRETTY_PATH) $(CFACOMPILE) -DERR1 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 145 146 146 147 # Warnings 147 warnings/self-assignment: warnings/self-assignment.c $(CFACC)148 warnings/self-assignment: warnings/self-assignment.cfa $(CFACC) 148 149 $(PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) 2> $(abspath ${@}) -fsyntax-only -
tests/Makefile.in
ra2dbcff1 r107b01a 91 91 build_triplet = @build@ 92 92 host_triplet = @host@ 93 EXTRA_PROGRAMS = avl_test$(EXEEXT) 93 EXTRA_PROGRAMS = avl_test$(EXEEXT) .dummy_hack$(EXEEXT) 94 94 subdir = tests 95 95 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 96 am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \ 97 $(top_srcdir)/configure.ac 96 am__aclocal_m4_deps = $(top_srcdir)/automake/libtool.m4 \ 97 $(top_srcdir)/automake/ltoptions.m4 \ 98 $(top_srcdir)/automake/ltsugar.m4 \ 99 $(top_srcdir)/automake/ltversion.m4 \ 100 $(top_srcdir)/automake/lt~obsolete.m4 \ 101 $(top_srcdir)/automake/cfa.m4 $(top_srcdir)/configure.ac 98 102 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 99 103 $(ACLOCAL_M4) … … 103 107 CONFIG_CLEAN_FILES = config.py 104 108 CONFIG_CLEAN_VPATH_FILES = test.py 109 am__dummy_hack_OBJECTS = .dummy_hack.$(OBJEXT) 110 _dummy_hack_OBJECTS = $(am__dummy_hack_OBJECTS) 111 _dummy_hack_LDADD = $(LDADD) 112 AM_V_lt = $(am__v_lt_@AM_V@) 113 am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) 114 am__v_lt_0 = --silent 115 am__v_lt_1 = 105 116 am__dirstamp = $(am__leading_dot)dirstamp 106 117 am_avl_test_OBJECTS = avltree/avl_test.$(OBJEXT) \ … … 128 139 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ 129 140 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 141 LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ 142 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ 143 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ 144 $(AM_CFLAGS) $(CFLAGS) 130 145 AM_V_CC = $(am__v_CC_@AM_V@) 131 146 am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) … … 133 148 am__v_CC_1 = 134 149 CCLD = $(CC) 135 LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ 150 LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ 151 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ 152 $(AM_LDFLAGS) $(LDFLAGS) -o $@ 136 153 AM_V_CCLD = $(am__v_CCLD_@AM_V@) 137 154 am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) 138 155 am__v_CCLD_0 = @echo " CCLD " $@; 139 156 am__v_CCLD_1 = 140 SOURCES = $( avl_test_SOURCES)141 DIST_SOURCES = $( avl_test_SOURCES)157 SOURCES = $(_dummy_hack_SOURCES) $(avl_test_SOURCES) 158 DIST_SOURCES = $(_dummy_hack_SOURCES) $(avl_test_SOURCES) 142 159 am__can_run_installinfo = \ 143 160 case $$AM_UPDATE_INFO_DIR in \ … … 172 189 AMTAR = @AMTAR@ 173 190 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ 191 AR = @AR@ 174 192 AUTOCONF = @AUTOCONF@ 175 193 AUTOHEADER = @AUTOHEADER@ … … 195 213 CPPFLAGS = @CPPFLAGS@ 196 214 CXX = @CXX@ 215 CXXCPP = @CXXCPP@ 197 216 CXXDEPMODE = @CXXDEPMODE@ 198 217 CXXFLAGS = @CXXFLAGS@ … … 200 219 DEFS = @DEFS@ 201 220 DEPDIR = @DEPDIR@ 221 DLLTOOL = @DLLTOOL@ 202 222 DRIVER_DIR = @DRIVER_DIR@ 223 DSYMUTIL = @DSYMUTIL@ 224 DUMPBIN = @DUMPBIN@ 203 225 ECHO_C = @ECHO_C@ 204 226 ECHO_N = @ECHO_N@ … … 206 228 EGREP = @EGREP@ 207 229 EXEEXT = @EXEEXT@ 230 FGREP = @FGREP@ 208 231 GREP = @GREP@ 209 232 HOST_FLAGS = @HOST_FLAGS@ … … 213 236 INSTALL_SCRIPT = @INSTALL_SCRIPT@ 214 237 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ 238 LD = @LD@ 215 239 LDFLAGS = @LDFLAGS@ 216 240 LEX = @LEX@ … … 221 245 LIBOBJS = @LIBOBJS@ 222 246 LIBS = @LIBS@ 247 LIBTOOL = @LIBTOOL@ 248 LIPO = @LIPO@ 249 LN_S = @LN_S@ 223 250 LTLIBOBJS = @LTLIBOBJS@ 251 LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ 224 252 MAKEINFO = @MAKEINFO@ 253 MANIFEST_TOOL = @MANIFEST_TOOL@ 225 254 MKDIR_P = @MKDIR_P@ 255 NM = @NM@ 256 NMEDIT = @NMEDIT@ 257 OBJDUMP = @OBJDUMP@ 226 258 OBJEXT = @OBJEXT@ 259 OTOOL = @OTOOL@ 260 OTOOL64 = @OTOOL64@ 227 261 PACKAGE = @PACKAGE@ 228 262 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ … … 234 268 PATH_SEPARATOR = @PATH_SEPARATOR@ 235 269 RANLIB = @RANLIB@ 270 SED = @SED@ 236 271 SET_MAKE = @SET_MAKE@ 237 272 SHELL = @SHELL@ … … 245 280 abs_top_builddir = @abs_top_builddir@ 246 281 abs_top_srcdir = @abs_top_srcdir@ 282 ac_ct_AR = @ac_ct_AR@ 247 283 ac_ct_CC = @ac_ct_CC@ 248 284 ac_ct_CXX = @ac_ct_CXX@ 285 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ 249 286 am__include = @am__include@ 250 287 am__leading_dot = @am__leading_dot@ … … 294 331 top_srcdir = @top_srcdir@ 295 332 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 333 ACLOCAL_AMFLAGS = -I automake 296 334 CFACOMPILE = $(CFACC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CFAFLAGS) $(CFAFLAGS) $(AM_CFLAGS) $(CFLAGS) 297 335 LTCFACOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ … … 329 367 ${INSTALL_FLAGS} ${ARCH_FLAGS} 330 368 PRETTY_PATH = cd ${srcdir} && 331 avl_test_SOURCES = avltree/avl_test.c avltree/avl0.c avltree/avl1.c avltree/avl2.c avltree/avl3.c avltree/avl4.c avltree/avl-private.c 369 avl_test_SOURCES = avltree/avl_test.cfa avltree/avl0.cfa avltree/avl1.cfa avltree/avl2.cfa avltree/avl3.cfa avltree/avl4.cfa avltree/avl-private.cfa 370 # automake doesn't know we still need C rules so pretend like we have a C program 371 _dummy_hack_SOURCES = .dummy_hack.c 332 372 all: all-am 333 373 334 374 .SUFFIXES: 335 .SUFFIXES: .c .cfa . lo .o .obj .validate375 .SUFFIXES: .c .cfa .dummy_hack .lo .o .obj .validate 336 376 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/src/cfa.make $(am__configure_deps) 337 377 @for dep in $?; do \ … … 366 406 config.py: $(top_builddir)/config.status $(srcdir)/config.py.in 367 407 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ 408 409 .dummy_hack$(EXEEXT): $(_dummy_hack_OBJECTS) $(_dummy_hack_DEPENDENCIES) $(EXTRA__dummy_hack_DEPENDENCIES) 410 @rm -f .dummy_hack$(EXEEXT) 411 $(AM_V_CCLD)$(LINK) $(_dummy_hack_OBJECTS) $(_dummy_hack_LDADD) $(LIBS) 368 412 avltree/$(am__dirstamp): 369 413 @$(MKDIR_P) avltree … … 398 442 -rm -f *.tab.c 399 443 400 @AMDEP_TRUE@@am__include@ @am__quote@avltree/$(DEPDIR)/avl-private.Po@am__quote@ 401 @AMDEP_TRUE@@am__include@ @am__quote@avltree/$(DEPDIR)/avl0.Po@am__quote@ 402 @AMDEP_TRUE@@am__include@ @am__quote@avltree/$(DEPDIR)/avl1.Po@am__quote@ 403 @AMDEP_TRUE@@am__include@ @am__quote@avltree/$(DEPDIR)/avl2.Po@am__quote@ 404 @AMDEP_TRUE@@am__include@ @am__quote@avltree/$(DEPDIR)/avl3.Po@am__quote@ 405 @AMDEP_TRUE@@am__include@ @am__quote@avltree/$(DEPDIR)/avl4.Po@am__quote@ 406 @AMDEP_TRUE@@am__include@ @am__quote@avltree/$(DEPDIR)/avl_test.Po@am__quote@ 444 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/.dummy_hack.Po@am__quote@ 407 445 408 446 .c.o: … … 421 459 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 422 460 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` 461 462 .c.lo: 463 @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ 464 @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ 465 @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo 466 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ 467 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 468 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< 469 470 mostlyclean-libtool: 471 -rm -f *.lo 472 473 clean-libtool: 474 -rm -rf .libs _libs 423 475 424 476 ID: $(am__tagged_files) … … 542 594 clean: clean-am 543 595 544 clean-am: clean-generic clean-l ocal mostlyclean-am596 clean-am: clean-generic clean-libtool clean-local mostlyclean-am 545 597 546 598 distclean: distclean-am 547 -rm -rf avltree/$(DEPDIR)599 -rm -rf ./$(DEPDIR) 548 600 -rm -f Makefile 549 601 distclean-am: clean-am distclean-compile distclean-generic \ … … 591 643 592 644 maintainer-clean: maintainer-clean-am 593 -rm -rf avltree/$(DEPDIR)645 -rm -rf ./$(DEPDIR) 594 646 -rm -f Makefile 595 647 maintainer-clean-am: distclean-am maintainer-clean-generic … … 597 649 mostlyclean: mostlyclean-am 598 650 599 mostlyclean-am: mostlyclean-compile mostlyclean-generic 651 mostlyclean-am: mostlyclean-compile mostlyclean-generic \ 652 mostlyclean-libtool 600 653 601 654 pdf: pdf-am … … 612 665 613 666 .PHONY: CTAGS GTAGS TAGS all all-am all-local check check-am clean \ 614 clean-generic clean-local cscopelist-am ctags ctags-am \ 615 distclean distclean-compile distclean-generic distclean-tags \ 616 distdir dvi dvi-am html html-am info info-am install \ 617 install-am install-data install-data-am install-dvi \ 618 install-dvi-am install-exec install-exec-am install-html \ 619 install-html-am install-info install-info-am install-man \ 620 install-pdf install-pdf-am install-ps install-ps-am \ 621 install-strip installcheck installcheck-am installdirs \ 622 maintainer-clean maintainer-clean-generic mostlyclean \ 623 mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ 667 clean-generic clean-libtool clean-local cscopelist-am ctags \ 668 ctags-am distclean distclean-compile distclean-generic \ 669 distclean-libtool distclean-tags distdir dvi dvi-am html \ 670 html-am info info-am install install-am install-data \ 671 install-data-am install-dvi install-dvi-am install-exec \ 672 install-exec-am install-html install-html-am install-info \ 673 install-info-am install-man install-pdf install-pdf-am \ 674 install-ps install-ps-am install-strip installcheck \ 675 installcheck-am installdirs maintainer-clean \ 676 maintainer-clean-generic mostlyclean mostlyclean-compile \ 677 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ 624 678 tags tags-am uninstall uninstall-am 625 679 … … 659 713 @echo "int main() { return 0; }" > ${@} 660 714 661 dummy_hack.c: 715 # automake doesn't know we still need C rules so pretend like we have a C program 716 .dummy_hack.c: 662 717 @echo "int main() { return 0; }" > ${@} 663 718 … … 668 723 669 724 # implicit rule so not all test require a rule 670 % : %.c $(CFACC)671 $(PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@})672 673 725 % : %.cfa $(CFACC) 674 726 $(PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) … … 699 751 700 752 #builtins 701 builtins/sync: builtins/sync.c $(CFACC)753 builtins/sync: builtins/sync.cfa $(CFACC) 702 754 $(PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) 2> $(abspath ${@}) -fsyntax-only 703 755 … … 724 776 725 777 # Constructor/destructor tests 726 raii/dtor-early-exit-ERR1: raii/dtor-early-exit.c $(CFACC)778 raii/dtor-early-exit-ERR1: raii/dtor-early-exit.cfa $(CFACC) 727 779 $(PRETTY_PATH) $(CFACOMPILE) -DERR1 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 728 780 729 raii/dtor-early-exit-ERR2: raii/dtor-early-exit.c $(CFACC)781 raii/dtor-early-exit-ERR2: raii/dtor-early-exit.cfa $(CFACC) 730 782 $(PRETTY_PATH) $(CFACOMPILE) -DERR2 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 731 783 732 raii/memberCtors-ERR1: raii/memberCtors.c $(CFACC)784 raii/memberCtors-ERR1: raii/memberCtors.cfa $(CFACC) 733 785 $(PRETTY_PATH) $(CFACOMPILE) -DERR1 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 734 786 735 raii/ctor-autogen-ERR1: raii/ctor-autogen.c $(CFACC)787 raii/ctor-autogen-ERR1: raii/ctor-autogen.cfa $(CFACC) 736 788 $(PRETTY_PATH) $(CFACOMPILE) -DERR1 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 737 789 738 790 # Warnings 739 warnings/self-assignment: warnings/self-assignment.c $(CFACC)791 warnings/self-assignment: warnings/self-assignment.cfa $(CFACC) 740 792 $(PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) 2> $(abspath ${@}) -fsyntax-only 741 793 -
tests/preempt_longrun/Makefile.am
ra2dbcff1 r107b01a 16 16 17 17 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 18 ACLOCAL_AMFLAGS = -I automake 18 19 19 20 repeats=10 -
tests/preempt_longrun/Makefile.in
ra2dbcff1 r107b01a 93 93 subdir = tests/preempt_longrun 94 94 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 95 am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \ 96 $(top_srcdir)/configure.ac 95 am__aclocal_m4_deps = $(top_srcdir)/automake/libtool.m4 \ 96 $(top_srcdir)/automake/ltoptions.m4 \ 97 $(top_srcdir)/automake/ltsugar.m4 \ 98 $(top_srcdir)/automake/ltversion.m4 \ 99 $(top_srcdir)/automake/lt~obsolete.m4 \ 100 $(top_srcdir)/automake/cfa.m4 $(top_srcdir)/configure.ac 97 101 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 98 102 $(ACLOCAL_M4) … … 333 337 AMTAR = @AMTAR@ 334 338 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ 339 AR = @AR@ 335 340 AUTOCONF = @AUTOCONF@ 336 341 AUTOHEADER = @AUTOHEADER@ … … 356 361 CPPFLAGS = @CPPFLAGS@ 357 362 CXX = @CXX@ 363 CXXCPP = @CXXCPP@ 358 364 CXXDEPMODE = @CXXDEPMODE@ 359 365 CXXFLAGS = @CXXFLAGS@ … … 361 367 DEFS = @DEFS@ 362 368 DEPDIR = @DEPDIR@ 369 DLLTOOL = @DLLTOOL@ 363 370 DRIVER_DIR = @DRIVER_DIR@ 371 DSYMUTIL = @DSYMUTIL@ 372 DUMPBIN = @DUMPBIN@ 364 373 ECHO_C = @ECHO_C@ 365 374 ECHO_N = @ECHO_N@ … … 367 376 EGREP = @EGREP@ 368 377 EXEEXT = @EXEEXT@ 378 FGREP = @FGREP@ 369 379 GREP = @GREP@ 370 380 HOST_FLAGS = @HOST_FLAGS@ … … 374 384 INSTALL_SCRIPT = @INSTALL_SCRIPT@ 375 385 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ 386 LD = @LD@ 376 387 LDFLAGS = @LDFLAGS@ 377 388 LEX = @LEX@ … … 382 393 LIBOBJS = @LIBOBJS@ 383 394 LIBS = @LIBS@ 395 LIBTOOL = @LIBTOOL@ 396 LIPO = @LIPO@ 397 LN_S = @LN_S@ 384 398 LTLIBOBJS = @LTLIBOBJS@ 399 LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ 385 400 MAKEINFO = @MAKEINFO@ 401 MANIFEST_TOOL = @MANIFEST_TOOL@ 386 402 MKDIR_P = @MKDIR_P@ 403 NM = @NM@ 404 NMEDIT = @NMEDIT@ 405 OBJDUMP = @OBJDUMP@ 387 406 OBJEXT = @OBJEXT@ 407 OTOOL = @OTOOL@ 408 OTOOL64 = @OTOOL64@ 388 409 PACKAGE = @PACKAGE@ 389 410 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ … … 395 416 PATH_SEPARATOR = @PATH_SEPARATOR@ 396 417 RANLIB = @RANLIB@ 418 SED = @SED@ 397 419 SET_MAKE = @SET_MAKE@ 398 420 SHELL = @SHELL@ … … 406 428 abs_top_builddir = @abs_top_builddir@ 407 429 abs_top_srcdir = @abs_top_srcdir@ 430 ac_ct_AR = @ac_ct_AR@ 408 431 ac_ct_CC = @ac_ct_CC@ 409 432 ac_ct_CXX = @ac_ct_CXX@ 433 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ 410 434 am__include = @am__include@ 411 435 am__leading_dot = @am__leading_dot@ … … 455 479 top_srcdir = @top_srcdir@ 456 480 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 481 ACLOCAL_AMFLAGS = -I automake 457 482 repeats = 10 458 483 max_time = 600 … … 502 527 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 503 528 $(am__aclocal_m4_deps): 529 530 mostlyclean-libtool: 531 -rm -f *.lo 532 533 clean-libtool: 534 -rm -rf .libs _libs 504 535 tags TAGS: 505 536 … … 805 836 clean: clean-am 806 837 807 clean-am: clean-generic clean-l ocal mostlyclean-am838 clean-am: clean-generic clean-libtool clean-local mostlyclean-am 808 839 809 840 distclean: distclean-am … … 857 888 mostlyclean: mostlyclean-am 858 889 859 mostlyclean-am: mostlyclean-generic 890 mostlyclean-am: mostlyclean-generic mostlyclean-libtool 860 891 861 892 pdf: pdf-am … … 872 903 873 904 .PHONY: all all-am all-local check check-TESTS check-am clean \ 874 clean-generic clean-local cscopelist-am ctags-am distclean \ 875 distclean-generic distdir dvi dvi-am html html-am info info-am \ 876 install install-am install-data install-data-am install-dvi \ 877 install-dvi-am install-exec install-exec-am install-html \ 878 install-html-am install-info install-info-am install-man \ 879 install-pdf install-pdf-am install-ps install-ps-am \ 880 install-strip installcheck installcheck-am installdirs \ 881 maintainer-clean maintainer-clean-generic mostlyclean \ 882 mostlyclean-generic pdf pdf-am ps ps-am recheck tags-am \ 905 clean-generic clean-libtool clean-local cscopelist-am ctags-am \ 906 distclean distclean-generic distclean-libtool distdir dvi \ 907 dvi-am html html-am info info-am install install-am \ 908 install-data install-data-am install-dvi install-dvi-am \ 909 install-exec install-exec-am install-html install-html-am \ 910 install-info install-info-am install-man install-pdf \ 911 install-pdf-am install-ps install-ps-am install-strip \ 912 installcheck installcheck-am installdirs maintainer-clean \ 913 maintainer-clean-generic mostlyclean mostlyclean-generic \ 914 mostlyclean-libtool pdf pdf-am ps ps-am recheck tags-am \ 883 915 uninstall uninstall-am 884 916 -
tests/raii/.expect/ctor-autogen-ERR1.txt
ra2dbcff1 r107b01a 1 raii/ctor-autogen.c :102:1 error: Unique best alternative includes deleted identifier in Cast of:1 raii/ctor-autogen.cfa:102:1 error: Unique best alternative includes deleted identifier in Cast of: 2 2 Application of 3 3 Deleted Expression 4 4 Variable Expression: ?{}: static inline function 5 5 ... with parameters 6 _dst: reference to instance of struct Managed with body 1 6 _dst: reference to instance of struct Managed with body 1 7 7 x: signed int 8 ... returning nothing 8 ... returning nothing 9 9 10 10 ... deleted by: ?{}: function 11 11 ... with parameters 12 m: reference to instance of struct Managed with body 1 13 ... returning nothing 14 ... with body 12 m: reference to instance of struct Managed with body 1 13 ... returning nothing 14 ... with body 15 15 CompoundStmt 16 16 Expression Statement: … … 20 20 intrinsic reference to signed int 21 21 intrinsic signed int 22 ... returning 22 ... returning 23 23 _retval__operator_assign: signed int 24 ... with attributes: 24 ... with attributes: 25 25 Attribute with name: unused 26 26 … … 28 28 ... to arguments 29 29 Cast of: 30 Member Expression, with field: 30 Member Expression, with field: 31 31 x: signed int 32 ... from aggregate: 32 ... from aggregate: 33 33 Cast of: 34 Variable Expression: m: reference to instance of struct Managed with body 1 34 Variable Expression: m: reference to instance of struct Managed with body 1 35 35 ... to: 36 instance of struct Managed with body 1 36 instance of struct Managed with body 1 37 37 ... to: 38 38 reference to signed int … … 49 49 ... to arguments 50 50 Cast of: 51 Variable Expression: x: instance of struct Managed with body 1 51 Variable Expression: x: instance of struct Managed with body 1 52 52 ... to: 53 reference to instance of struct Managed with body 1 53 reference to instance of struct Managed with body 1 54 54 constant expression (123 123: signed int) 55 55 -
tests/raii/.expect/dtor-early-exit-ERR1.txt
ra2dbcff1 r107b01a 1 raii/dtor-early-exit.c :150:1 error: jump to label 'L1' crosses initialization of y Branch (Goto)1 raii/dtor-early-exit.cfa:150:1 error: jump to label 'L1' crosses initialization of y Branch (Goto) 2 2 with target: L1 3 3 with original target: L1 -
tests/raii/.expect/dtor-early-exit-ERR2.txt
ra2dbcff1 r107b01a 1 raii/dtor-early-exit.c :214:1 error: jump to label 'L2' crosses initialization of y Branch (Goto)1 raii/dtor-early-exit.cfa:214:1 error: jump to label 'L2' crosses initialization of y Branch (Goto) 2 2 with target: L2 3 3 with original target: L2 -
tests/raii/.expect/memberCtors-ERR1.txt
ra2dbcff1 r107b01a 1 raii/memberCtors.c :71:1 error: in void ?{}(B &b), field a2 used before being constructed1 raii/memberCtors.cfa:71:1 error: in void ?{}(B &b), field a2 used before being constructed -
tests/warnings/.expect/self-assignment.txt
ra2dbcff1 r107b01a 1 warnings/self-assignment.c :29:1 warning: self assignment of expression: Cast of:1 warnings/self-assignment.cfa:29:1 warning: self assignment of expression: Cast of: 2 2 Variable Expression: j: signed int 3 3 ... to: 4 4 reference to signed int 5 warnings/self-assignment.c :30:1 warning: self assignment of expression: Cast of:6 Variable Expression: s: instance of struct S with body 1 5 warnings/self-assignment.cfa:30:1 warning: self assignment of expression: Cast of: 6 Variable Expression: s: instance of struct S with body 1 7 7 ... to: 8 reference to instance of struct S with body 1 9 warnings/self-assignment.c :31:1 warning: self assignment of expression: Cast of:10 Member Expression, with field: 8 reference to instance of struct S with body 1 9 warnings/self-assignment.cfa:31:1 warning: self assignment of expression: Cast of: 10 Member Expression, with field: 11 11 i: signed int 12 ... from aggregate: 13 Variable Expression: s: instance of struct S with body 1 12 ... from aggregate: 13 Variable Expression: s: instance of struct S with body 1 14 14 ... to: 15 15 reference to signed int 16 warnings/self-assignment.c :32:1 warning: self assignment of expression: Cast of:17 Member Expression, with field: 16 warnings/self-assignment.cfa:32:1 warning: self assignment of expression: Cast of: 17 Member Expression, with field: 18 18 i: signed int 19 ... from aggregate: 20 Member Expression, with field: 21 s: instance of struct S with body 1 22 ... from aggregate: 23 Variable Expression: t: instance of struct T with body 1 19 ... from aggregate: 20 Member Expression, with field: 21 s: instance of struct S with body 1 22 ... from aggregate: 23 Variable Expression: t: instance of struct T with body 1 24 24 ... to: 25 25 reference to signed int
Note: See TracChangeset
for help on using the changeset viewer.