Changeset 1411 in kBuild for trunk/tests
- Timestamp:
- Mar 18, 2008 5:45:36 PM (17 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/dummy_defined_Y.c
r1407 r1411 1 1 /* $Id$ */ 2 2 /** @file 3 * Tests - Dummy test program checking that X == 42, possibly doing this via y.3 * Tests - Dummy test program checking that Y == 42. 4 4 */ 5 5 … … 25 25 */ 26 26 27 #ifndef X28 # error " Xisn't defined, test the is busted."27 #ifndef Y 28 # error "Y isn't defined, test the is busted." 29 29 #endif 30 30 31 #ifndef y 32 # define y 42 33 #endif 34 35 #if X != 42 36 # error "X != 42" 31 #if Y != 42 32 # error "Y != 42" 37 33 #endif 38 34
Note:
See TracChangeset
for help on using the changeset viewer.