Changeset 2159 in kBuild for trunk/src/kmk/tests/scripts
- Timestamp:
- Dec 29, 2008 4:08:15 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/tests/scripts/functions/evalcall
r2158 r2159 77 77 endif 78 78 79 # negative tests: 79 80 # Negative tests: 80 81 81 82 .RETURN = $2 $1 … … 91 92 endif 92 93 94 95 # Test .ARGC: 96 97 FUNC = local .RETURN = $(.ARGC) 98 ifneq ($(evalcall FUNC,a,b),2) 99 $(error sub-test 20 failed) 100 endif 101 ifneq ($(evalcall FUNC),0) 102 $(error sub-test 21 failed) 103 endif 104 ifneq ($(evalcall FUNC,aasdfasdf),1) 105 $(error sub-test 22 failed) 106 endif 107 108 93 109 .PHONY: all 94 110 all: ; @: … … 99 115 100 116 101 102 117 # Indicate that we're done. 103 118 1;
Note:
See TracChangeset
for help on using the changeset viewer.