Changeset 21449


Ignore:
Timestamp:
Sep 19, 2010, 8:59:38 PM (15 years ago)
Author:
dmik
Message:

testapp: Added test case for for try/finally/leave.

Location:
trunk/testapp
Files:
1 added
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/testapp/common.mak

    r21433 r21449  
    2323
    2424run-%: %
    25         @echo [Running $<]
     25        @echo [Running $<$(if $($<_ARGS), $($<_ARGS))]
    2626        @echo.
    27         @cmd /c "set BEGINLIBPATH=$(ODIN_DOS)/bin/Debug;$(ODIN_DOS)/bin;%BEGINLIBPATH% && $<"
     27        @cmd /c "set BEGINLIBPATH=$(ODIN_DOS)/bin/Debug;$(ODIN_DOS)/bin;%BEGINLIBPATH% && $< $($<_ARGS)"
     28        @echo.
    2829
    2930debug-%: %
    30         @echo [Debugging $<]
     31        @echo [Running $<$(if $($<_ARGS), $($<_ARGS))]
    3132        @echo.
    32         @cmd /c "set BEGINLIBPATH=$(ODIN_DOS)/bin/Debug;$(ODIN_DOS)/bin;%BEGINLIBPATH% && $(DEBUGGER) $<"
     33        @cmd /c "set BEGINLIBPATH=$(ODIN_DOS)/bin/Debug;$(ODIN_DOS)/bin;%BEGINLIBPATH% && $(DEBUGGER) $< $($<_ARGS)"
     34        @echo.
    3335       
    3436%.exe: %.c
     
    4244clean::
    4345        -rm $(CLEAN)
     46
     47define run-with-args-gen
     48.PHONY: run-$(1)-$(2) run-$(1)-$(3)
     49run-$(1)-$(2): $(1)
     50        @make -s run-$(1) $(1)_ARGS=$($(1)_ARGS.$(2))
     51run-$(1)-$(3):: run-$(1)-$(2)
     52endef
     53
     54run-with-args = $(foreach i, $(2), $(eval $(call run-with-args-gen,$(1),$(i),$(3))))run-$(1)-$(3)
  • TabularUnified trunk/testapp/exceptions/seh/Makefile

    r21432 r21449  
    33include $(ODIN)/testapp/common.mak
    44
    5 all: test.exe # test.s
     5all: except.exe finally.exe # except.s
    66
    7 run: run-test.exe
     7finally.exe_ARGS.1 = 1
     8finally.exe_ARGS.2 = 2
     9finally.exe_ARGS.3 = 3
     10
     11run: run-except.exe $(call run-with-args,finally.exe,1 2 3,all)
    812
    913CLEAN += *.s
Note: See TracChangeset for help on using the changeset viewer.