Changeset bc06753 in rtems
- Timestamp:
- 04/09/18 03:45:15 (5 years ago)
- Branches:
- 5, master
- Children:
- cc14545e
- Parents:
- 8074fa0b
- git-author:
- Chris Johns <chrisj@…> (04/09/18 03:45:15)
- git-committer:
- Chris Johns <chrisj@…> (04/09/18 22:24:54)
- Location:
- testsuites/sptests
- Files:
-
- 217 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/sptests/Makefile.am
r8074fa0b rbc06753 1 # 2 # Single Processor Testuite 3 # 4 1 5 ACLOCAL_AMFLAGS = -I ../aclocal 2 6 3 ## Test names are spaced to indicate gaps in numbering from tests being 4 ## deleted over the years. 5 _SUBDIRS = \ 6 sp01 sp02 sp03 sp04 sp05 sp06 sp07 sp08 \ 7 sp11 sp12 sp13 sp14 sp15 sp16 sp17 sp18 sp19 \ 8 sp20 sp21 sp22 sp23 sp24 sp25 sp26 sp27 sp27a \ 9 sp30 sp31 sp32 sp33 sp34 sp35 sp37 sp38 \ 10 sp40 sp41 sp42 sp43 sp44 sp45 sp46 sp47 sp48 sp49 \ 11 sp50 sp51 sp52 sp53 sp54 sp55 sp56 sp57 sp58 sp59 \ 12 sp60 sp62 sp63 sp64 sp65 sp66 sp67 sp68 sp69 \ 13 sp70 sp71 sp72 sp73 sp74 sp75 sp76 sp77 sprmsched02 sp2038 \ 14 spassoc01 spchain spcoverage spobjgetnext \ 15 spprintk spprivenv01 sprbtree01 spsize spstkalloc \ 16 spstkalloc02 spthreadq01 spwatchdog spwkspace \ 17 sperror01 sperror02 sperror03 \ 18 spfatal01 spfatal02 spfatal03 spfatal04 spfatal05 spfatal06 spfatal07 \ 19 spfatal08 spfatal09 spfatal10 spfatal11 spfatal12 spfatal13 spfatal14 \ 20 spfatal15 spfatal16 \ 21 spfatal24 spfatal25 spfatal27\ 22 spfifo01 spfifo02 spfifo03 spfifo04 spfifo05 \ 23 spfreechain01 \ 24 spintrcritical01 spintrcritical02 spintrcritical03 spintrcritical04 \ 25 spintrcritical05 spintrcritical06 spintrcritical07 spintrcritical08 \ 26 spintrcritical09 spintrcritical10 spintrcritical11 spintrcritical12 \ 27 spintrcritical13 spintrcritical14 spintrcritical15 spintrcritical16 \ 28 spintrcritical18 spmkdir spmountmgr01 spheapprot \ 29 sppagesize spsem01 spsem02 spsimplesched01 spsimplesched02 \ 30 spsimplesched03 spnsext01 spedfsched01 spedfsched02 spedfsched03 \ 31 spcbssched01 spcbssched02 spcbssched03 spqreslib sptimespec01 \ 32 spregion_err01 sppartition_err01 spratemon_err01 spintr_err01 \ 33 spsignal_err01 spport_err01 spmsgq_err01 spmsgq_err02 spsem_err01 \ 34 spsem_err02 sptask_err01 spevent_err03 sptask_err03 sptask_err02 \ 35 sptask_err04 spclock_err01 36 _SUBDIRS += spthread01 37 _SUBDIRS += spconsole01 38 _SUBDIRS += spintrcritical24 39 _SUBDIRS += spfatal29 40 _SUBDIRS += spfatal30 41 _SUBDIRS += spfatal31 42 _SUBDIRS += spmutex01 43 _SUBDIRS += spextensions01 44 _SUBDIRS += spsysinit01 45 _SUBDIRS += sprmsched01 spedfsched04 46 if HAS_SMP 47 else 48 _SUBDIRS += sp29 49 endif 50 _SUBDIRS += spsyslock01 51 _SUBDIRS += spstdthreads01 52 _SUBDIRS += splinkersets01 53 _SUBDIRS += sptasknopreempt01 54 _SUBDIRS += spintrcritical23 55 _SUBDIRS += sptimecounter01 56 _SUBDIRS += sptimecounter02 57 _SUBDIRS += sptimecounter03 58 _SUBDIRS += sptimecounter04 59 _SUBDIRS += spatomic01 60 _SUBDIRS += spintrcritical22 61 _SUBDIRS += spsem03 62 _SUBDIRS += spmrsp01 63 _SUBDIRS += spscheduler01 64 _SUBDIRS += spfatal28 65 _SUBDIRS += spthreadlife01 66 _SUBDIRS += spcache01 67 _SUBDIRS += sptls03 68 _SUBDIRS += sptls04 69 _SUBDIRS += spcpucounter01 7 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg 8 include $(top_srcdir)/../automake/compile.am 9 10 sp_tests = 11 sp_screens = 12 sp_docs = 13 sp_libs = 14 15 support_includes = -I$(top_srcdir)/../support/include 16 17 if TEST_sp01 18 sp_tests += sp01 19 sp_screens += sp01/sp01.scn 20 sp_docs += sp01/sp01.doc 21 sp01_SOURCES = sp01/init.c sp01/task1.c sp01/system.h 22 sp01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp01) $(support_includes) 23 endif 24 25 if TEST_sp02 26 sp_tests += sp02 27 sp_screens += sp02/sp02.scn 28 sp_docs += sp02/sp02.doc 29 sp02_SOURCES = sp02/init.c sp02/task1.c sp02/task2.c sp02/task3.c \ 30 sp02/preempt.c sp02/system.h 31 sp02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp02) $(support_includes) 32 endif 33 34 if TEST_sp03 35 sp_tests += sp03 36 sp_screens += sp03/sp03.scn 37 sp_docs += sp03/sp03.doc 38 sp03_SOURCES = sp03/init.c sp03/task1.c sp03/task2.c sp03/system.h 39 sp03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp03) $(support_includes) 40 endif 41 42 if TEST_sp04 43 sp_tests += sp04 44 sp_screens += sp04/sp04.scn 45 sp_docs += sp04/sp04.doc 46 sp04_SOURCES = sp04/init.c sp04/task1.c sp04/task2.c sp04/task3.c \ 47 sp04/tswitch.c sp04/system.h 48 sp04_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp04) $(support_includes) 49 endif 50 51 if TEST_sp05 52 sp_tests += sp05 53 sp_screens += sp05/sp05.scn 54 sp_docs += sp05/sp05.doc 55 sp05_SOURCES = sp05/init.c sp05/task1.c sp05/task2.c sp05/task3.c \ 56 sp05/system.h 57 sp05_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp05) $(support_includes) 58 endif 59 60 if TEST_sp06 61 sp_tests += sp06 62 sp_screens += sp06/sp06.scn 63 sp_docs += sp06/sp06.doc 64 sp06_SOURCES = sp06/init.c sp06/task1.c sp06/task2.c sp06/task3.c \ 65 sp06/system.h 66 sp06_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp06) $(support_includes) 67 endif 68 69 if TEST_sp07 70 sp_tests += sp07 71 sp_screens += sp07/sp07.scn 72 sp_docs += sp07/sp07.doc 73 sp07_SOURCES = sp07/init.c sp07/task1.c sp07/task2.c sp07/task3.c \ 74 sp07/task4.c sp07/taskexit.c sp07/tcreate.c sp07/tdelete.c \ 75 sp07/trestart.c sp07/tstart.c sp07/system.h 76 sp07_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp07) $(support_includes) 77 endif 78 79 if TEST_sp08 80 sp_tests += sp08 81 sp_screens += sp08/sp08.scn 82 sp_docs += sp08/sp08.doc 83 sp08_SOURCES = sp08/init.c 84 sp08_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp08) $(support_includes) 85 endif 86 87 if TEST_sp11 88 sp_tests += sp11 89 sp_screens += sp11/sp11.scn 90 sp_docs += sp11/sp11.doc 91 sp11_SOURCES = sp11/init.c sp11/task1.c sp11/task2.c sp11/timer.c \ 92 sp11/system.h 93 sp11_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp11) $(support_includes) 94 endif 95 96 if TEST_sp12 97 sp_tests += sp12 98 sp_screens += sp12/sp12.scn 99 sp_docs += sp12/sp12.doc 100 sp12_SOURCES = sp12/init.c sp12/task1.c sp12/task2.c sp12/task3.c \ 101 sp12/task4.c sp12/task5.c sp12/pridrv.c sp12/pritask.c sp12/system.h 102 sp12_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp12) $(support_includes) 103 endif 104 105 if TEST_sp13 106 sp_tests += sp13 107 sp_screens += sp13/sp13.scn 108 sp_docs += sp13/sp13.doc 109 sp13_SOURCES = sp13/init.c sp13/fillbuff.c sp13/putbuff.c sp13/task1.c \ 110 sp13/task2.c sp13/task3.c sp13/system.h 111 sp13_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp13) $(support_includes) 112 endif 113 114 if TEST_sp14 115 sp_tests += sp14 116 sp_screens += sp14/sp14.scn 117 sp_docs += sp14/sp14.doc 118 sp14_SOURCES = sp14/init.c sp14/asr.c sp14/task1.c sp14/task2.c \ 119 sp14/system.h 120 sp14_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp14) $(support_includes) 121 endif 122 123 if TEST_sp15 124 sp_tests += sp15 125 sp_screens += sp15/sp15.scn 126 sp_docs += sp15/sp15.doc 127 sp15_SOURCES = sp15/init.c sp15/task1.c sp15/system.h 128 sp15_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp15) $(support_includes) 129 endif 130 131 if TEST_sp16 132 sp_tests += sp16 133 sp_screens += sp16/sp16.scn 134 sp_docs += sp16/sp16.doc 135 sp16_SOURCES = sp16/init.c sp16/task1.c sp16/task2.c sp16/task3.c \ 136 sp16/task4.c sp16/task5.c sp16/system.h 137 sp16_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp16) $(support_includes) 138 endif 139 140 if TEST_sp17 141 sp_tests += sp17 142 sp_screens += sp17/sp17.scn 143 sp_docs += sp17/sp17.doc 144 sp17_SOURCES = sp17/init.c sp17/asr.c sp17/task1.c sp17/task2.c \ 145 sp17/system.h 146 sp17_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp17) $(support_includes) 147 endif 148 149 if TEST_sp18 150 sp_tests += sp18 151 sp_screens += sp18/sp18.scn 152 sp_docs += sp18/sp18.doc 153 sp18_SOURCES = sp18/init.c 154 sp18_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp18) $(support_includes) 155 endif 156 157 if TEST_sp19 158 sp_tests += sp19 159 sp_screens += sp19/sp19.scn 160 sp_docs += sp19/sp19.doc 161 sp19_SOURCES = sp19/init.c sp19/first.c sp19/fptask.c sp19/task1.c \ 162 sp19/system.h sp19/fptest.h sp19/inttest.h 163 sp19_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp19) $(support_includes) 164 endif 165 166 if TEST_sp20 167 sp_tests += sp20 168 sp_screens += sp20/sp20.scn 169 sp_docs += sp20/sp20.doc 170 sp20_SOURCES = sp20/init.c sp20/getall.c sp20/task1.c sp20/system.h 171 sp20_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp20) $(support_includes) 172 endif 173 174 if TEST_sp2038 175 sp_tests += sp2038 176 sp_screens += sp2038/sp2038.scn 177 sp_docs += sp2038/sp2038.doc 178 sp2038_SOURCES = sp2038/init.c 179 sp2038_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp2038) \ 180 $(support_includes) 181 endif 182 183 if TEST_sp21 184 sp_tests += sp21 185 sp_screens += sp21/sp21.scn 186 sp_docs += sp21/sp21.doc 187 sp21_SOURCES = sp21/init.c 188 sp21_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp21) $(support_includes) \ 189 -Wno-deprecated-declarations 190 endif 191 192 if TEST_sp22 193 sp_tests += sp22 194 sp_screens += sp22/sp22.scn 195 sp_docs += sp22/sp22.doc 196 sp22_SOURCES = sp22/init.c sp22/prtime.c sp22/delay.c sp22/task1.c \ 197 sp22/system.h 198 sp22_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp22) $(support_includes) 199 endif 200 201 if TEST_sp23 202 sp_tests += sp23 203 sp_screens += sp23/sp23.scn 204 sp_docs += sp23/sp23.doc 205 sp23_SOURCES = sp23/init.c sp23/task1.c sp23/system.h 206 sp23_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp23) $(support_includes) 207 endif 208 209 if TEST_sp24 210 sp_tests += sp24 211 sp_screens += sp24/sp24.scn 212 sp_docs += sp24/sp24.doc 213 sp24_SOURCES = sp24/init.c sp24/resume.c sp24/task1.c sp24/system.h 214 sp24_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp24) $(support_includes) 215 endif 216 217 if TEST_sp25 218 sp_tests += sp25 219 sp_screens += sp25/sp25.scn 220 sp_docs += sp25/sp25.doc 221 sp25_SOURCES = sp25/init.c sp25/task1.c sp25/system.h 222 sp25_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp25) $(support_includes) 223 endif 224 225 if TEST_sp26 226 sp_tests += sp26 227 sp_screens += sp26/sp26.scn 228 sp_docs += sp26/sp26.doc 229 sp26_SOURCES = sp26/init.c sp26/task1.c sp26/system.h 230 sp26_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp26) $(support_includes) 231 endif 232 233 if TEST_sp27 234 sp_tests += sp27 235 sp_screens += sp27/sp27.scn 236 sp_docs += sp27/sp27.doc 237 sp27_SOURCES = sp27/init.c 238 sp27_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp27) $(support_includes) 239 endif 240 241 if TEST_sp27a 242 sp_tests += sp27a 243 sp_screens += sp27a/sp27a.scn 244 sp_docs += sp27a/sp27a.doc 245 sp27a_SOURCES = sp27/init.c 246 sp27a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp27a) \ 247 $(support_includes) -DUSE_COUNTING_SEMAPHORE 248 endif 249 250 if NO_SMP 251 if TEST_sp29 252 sp_tests += sp29 253 sp_screens += sp29/sp29.scn 254 sp_docs += sp29/sp29.doc 255 sp29_SOURCES = sp29/init.c 256 sp29_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp29) $(support_includes) 257 endif 258 endif 259 260 if TEST_sp30 261 sp_tests += sp30 262 sp_screens += sp30/sp30.scn 263 sp_docs += sp30/sp30.doc 264 sp30_SOURCES = sp30/init.c sp30/resume.c sp30/task1.c sp30/system.h 265 sp30_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp30) $(support_includes) 266 endif 267 268 if TEST_sp31 269 sp_tests += sp31 270 sp_screens += sp31/sp31.scn 271 sp_docs += sp31/sp31.doc 272 sp31_SOURCES = sp31/delay.c sp31/init.c sp31/prtime.c sp31/task1.c \ 273 sp31/system.h 274 sp31_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp31) $(support_includes) 275 endif 276 277 if TEST_sp32 278 sp_tests += sp32 279 sp_screens += sp32/sp32.scn 280 sp_docs += sp32/sp32.doc 281 sp32_SOURCES = sp32/init.c 282 sp32_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp32) $(support_includes) 283 endif 284 285 if TEST_sp33 286 sp_tests += sp33 287 sp_screens += sp33/sp33.scn 288 sp_docs += sp33/sp33.doc 289 sp33_SOURCES = sp33/init.c 290 sp33_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp33) $(support_includes) 291 endif 292 293 if TEST_sp34 294 sp_tests += sp34 295 sp_screens += sp34/sp34.scn 296 sp_docs += sp34/sp34.doc 297 sp34_SOURCES = sp34/changepri.c 298 sp34_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp34) $(support_includes) 299 endif 300 301 if TEST_sp35 302 sp_tests += sp35 303 sp_screens += sp35/sp35.scn 304 sp_docs += sp35/sp35.doc 305 sp35_SOURCES = sp35/priinv.c 306 sp35_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp35) $(support_includes) 307 endif 308 309 if TEST_sp36 310 sp_tests += sp36 311 sp_screens += sp36/sp36.scn 312 sp_docs += sp36/sp36.doc 313 sp36_SOURCES = sp36/strict_order_mut.c 314 sp36_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp36) $(support_includes) 315 endif 316 317 if TEST_sp37 318 sp_tests += sp37 319 sp_screens += sp37/sp37.scn 320 sp_docs += sp37/sp37.doc 321 sp37_SOURCES = sp37/init.c sp37/system.h 322 sp37_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp37) $(support_includes) 323 endif 324 325 if TEST_sp38 326 sp_tests += sp38 327 sp_screens += sp38/sp38.scn 328 sp_docs += sp38/sp38.doc 329 sp38_SOURCES = sp38/init.c sp38/system.h 330 sp38_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp38) $(support_includes) 331 endif 332 333 if TEST_sp40 334 sp_tests += sp40 335 sp_screens += sp40/sp40.scn 336 sp_docs += sp40/sp40.doc 337 sp40_SOURCES = sp40/init.c 338 sp40_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp40) $(support_includes) 339 endif 340 341 if TEST_sp41 342 sp_tests += sp41 343 sp_screens += sp41/sp41.scn 344 sp_docs += sp41/sp41.doc 345 sp41_SOURCES = sp41/init.c 346 sp41_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp41) $(support_includes) 347 endif 348 349 if TEST_sp42 350 sp_tests += sp42 351 sp_screens += sp42/sp42.scn 352 sp_docs += sp42/sp42.doc 353 sp42_SOURCES = sp42/init.c 354 sp42_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp42) $(support_includes) 355 endif 356 357 if TEST_sp43 358 sp_tests += sp43 359 sp_screens += sp43/sp43.scn 360 sp_docs += sp43/sp43.doc 361 sp43_SOURCES = sp43/init.c sp43/system.h 362 sp43_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp43) $(support_includes) 363 endif 364 365 if TEST_sp44 366 sp_tests += sp44 367 sp_screens += sp44/sp44.scn 368 sp_docs += sp44/sp44.doc 369 sp44_SOURCES = sp44/init.c 370 sp44_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp44) $(support_includes) 371 endif 372 373 if TEST_sp45 374 sp_tests += sp45 375 sp_screens += sp45/sp45.scn 376 sp_docs += sp45/sp45.doc 377 sp45_SOURCES = sp45/init.c 378 sp45_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp45) $(support_includes) 379 endif 380 381 if TEST_sp46 382 sp_tests += sp46 383 sp_screens += sp46/sp46.scn 384 sp_docs += sp46/sp46.doc 385 sp46_SOURCES = sp46/init.c 386 sp46_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp46) $(support_includes) 387 endif 388 389 if TEST_sp47 390 sp_tests += sp47 391 sp_screens += sp47/sp47.scn 392 sp_docs += sp47/sp47.doc 393 sp47_SOURCES = sp47/init.c 394 sp47_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp47) $(support_includes) 395 endif 396 397 if TEST_sp48 398 sp_tests += sp48 399 sp_screens += sp48/sp48.scn 400 sp_docs += sp48/sp48.doc 401 sp48_SOURCES = sp48/init.c 402 sp48_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp48) $(support_includes) 403 endif 404 405 if TEST_sp49 406 sp_tests += sp49 407 sp_screens += sp49/sp49.scn 408 sp_docs += sp49/sp49.doc 409 sp49_SOURCES = sp49/init.c 410 sp49_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp49) $(support_includes) 411 endif 412 413 if TEST_sp50 414 sp_tests += sp50 415 sp_screens += sp50/sp50.scn 416 sp_docs += sp50/sp50.doc 417 sp50_SOURCES = sp50/init.c 418 sp50_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp50) $(support_includes) 419 endif 420 421 if TEST_sp51 422 sp_tests += sp51 423 sp_screens += sp51/sp51.scn 424 sp_docs += sp51/sp51.doc 425 sp51_SOURCES = sp51/init.c 426 sp51_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp51) $(support_includes) 427 endif 428 429 if TEST_sp52 430 sp_tests += sp52 431 sp_screens += sp52/sp52.scn 432 sp_docs += sp52/sp52.doc 433 sp52_SOURCES = sp52/init.c 434 sp52_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp52) $(support_includes) 435 endif 436 437 if TEST_sp53 438 sp_tests += sp53 439 sp_screens += sp53/sp53.scn 440 sp_docs += sp53/sp53.doc 441 sp53_SOURCES = sp52/init.c 442 sp53_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp53) $(support_includes) \ 443 -DUSE_TIMER_SERVER 444 endif 445 446 if TEST_sp54 447 sp_tests += sp54 448 sp_screens += sp54/sp54.scn 449 sp_docs += sp54/sp54.doc 450 sp54_SOURCES = sp54/init.c 451 sp54_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp54) $(support_includes) 452 endif 453 454 if TEST_sp55 455 sp_tests += sp55 456 sp_screens += sp55/sp55.scn 457 sp_docs += sp55/sp55.doc 458 sp55_SOURCES = sp55/init.c 459 sp55_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp55) $(support_includes) 460 endif 461 462 if TEST_sp56 463 sp_tests += sp56 464 sp_screens += sp56/sp56.scn 465 sp_docs += sp56/sp56.doc 466 sp56_SOURCES = sp56/init.c 467 sp56_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp56) $(support_includes) 468 endif 469 470 if TEST_sp57 471 sp_tests += sp57 472 sp_screens += sp57/sp57.scn 473 sp_docs += sp57/sp57.doc 474 sp57_SOURCES = sp57/init.c 475 sp57_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp57) $(support_includes) 476 endif 477 478 if TEST_sp58 479 sp_tests += sp58 480 sp_screens += sp58/sp58.scn 481 sp_docs += sp58/sp58.doc 482 sp58_SOURCES = sp58/init.c 483 sp58_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp58) $(support_includes) 484 endif 485 486 if TEST_sp59 487 sp_tests += sp59 488 sp_screens += sp59/sp59.scn 489 sp_docs += sp59/sp59.doc 490 sp59_SOURCES = sp59/init.c 491 sp59_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp59) $(support_includes) 492 endif 493 494 if TEST_sp60 495 sp_tests += sp60 496 sp_screens += sp60/sp60.scn 497 sp_docs += sp60/sp60.doc 498 sp60_SOURCES = sp60/init.c 499 sp60_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp60) $(support_includes) 500 endif 501 502 if TEST_sp62 503 sp_tests += sp62 504 sp_screens += sp62/sp62.scn 505 sp_docs += sp62/sp62.doc 506 sp62_SOURCES = sp62/init.c 507 sp62_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp62) $(support_includes) 508 endif 509 510 if TEST_sp63 511 sp_tests += sp63 512 sp_screens += sp63/sp63.scn 513 sp_docs += sp63/sp63.doc 514 sp63_SOURCES = sp63/init.c 515 sp63_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp63) $(support_includes) 516 endif 517 518 if TEST_sp64 519 sp_tests += sp64 520 sp_screens += sp64/sp64.scn 521 sp_docs += sp64/sp64.doc 522 sp64_SOURCES = sp64/init.c 523 sp64_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp64) $(support_includes) \ 524 -I$(top_srcdir)/include 525 endif 526 527 if TEST_sp65 528 sp_tests += sp65 529 sp_screens += sp65/sp65.scn 530 sp_docs += sp65/sp65.doc 531 sp65_SOURCES = sp65/init.c 532 sp65_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp65) $(support_includes) \ 533 -I$(top_srcdir)/include 534 endif 535 536 if TEST_sp66 537 sp_tests += sp66 538 sp_screens += sp66/sp66.scn 539 sp_docs += sp66/sp66.doc 540 sp66_SOURCES = sp65/init.c 541 sp66_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp66) $(support_includes) \ 542 -I$(top_srcdir)/include -DINHERIT_CEILING 543 endif 544 545 if TEST_sp67 546 sp_tests += sp67 547 sp_screens += sp67/sp67.scn 548 sp_docs += sp67/sp67.doc 549 sp67_SOURCES = sp67/init.c 550 sp67_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp67) $(support_includes) 551 endif 552 553 if TEST_sp68 554 sp_tests += sp68 555 sp_screens += sp68/sp68.scn 556 sp_docs += sp68/sp68.doc 557 sp68_SOURCES = sp68/init.c 558 sp68_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp68) $(support_includes) 559 endif 560 561 if TEST_sp69 562 sp_tests += sp69 563 sp_screens += sp69/sp69.scn 564 sp_docs += sp69/sp69.doc 565 sp69_SOURCES = sp69/init.c ../support/src/spin.c 566 sp69_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp69) $(support_includes) 567 endif 568 569 if TEST_sp70 570 sp_tests += sp70 571 sp_screens += sp70/sp70.scn 572 sp_docs += sp70/sp70.doc 573 sp70_SOURCES = sp70/init.c 574 sp70_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp70) $(support_includes) 575 endif 576 577 if TEST_sp71 578 sp_tests += sp71 579 sp_screens += sp71/sp71.scn 580 sp_docs += sp71/sp71.doc 581 sp71_SOURCES = sp71/init.c 582 sp71_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp71) $(support_includes) 583 endif 584 585 if TEST_sp72 586 sp_tests += sp72 587 sp_screens += sp72/sp72.scn 588 sp_docs += sp72/sp72.doc 589 sp72_SOURCES = sp72/init.c 590 sp72_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp72) $(support_includes) 591 endif 592 593 if TEST_sp73 594 sp_tests += sp73 595 sp_screens += sp73/sp73.scn 596 sp_docs += sp73/sp73.doc 597 sp73_SOURCES = sp73/init.c 598 sp73_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp73) $(support_includes) 599 endif 600 601 if TEST_sp74 602 sp_tests += sp74 603 sp_screens += sp74/sp74.scn 604 sp_docs += sp74/sp74.doc 605 sp74_SOURCES = sp74/init.c 606 sp74_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp74) $(support_includes) 607 endif 608 609 if TEST_sp75 610 sp_tests += sp75 611 sp_screens += sp75/sp75.scn 612 sp_docs += sp75/sp75.doc 613 sp75_SOURCES = sp75/init.c 614 sp75_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp75) $(support_includes) 615 endif 616 617 if TEST_sp76 618 sp_tests += sp76 619 sp_screens += sp76/sp76.scn 620 sp_docs += sp76/sp76.doc 621 sp76_SOURCES = sp76/init.c 622 sp76_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp76) $(support_includes) 623 endif 624 625 if TEST_sp77 626 sp_tests += sp77 627 sp_screens += sp77/sp77.scn 628 sp_docs += sp77/sp77.doc 629 sp77_SOURCES = sp77/init.c 630 sp77_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sp77) $(support_includes) 631 endif 632 633 if TEST_spassoc01 634 sp_tests += spassoc01 635 sp_screens += spassoc01/spassoc01.scn 636 sp_docs += spassoc01/spassoc01.doc 637 spassoc01_SOURCES = spassoc01/init.c 638 spassoc01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spassoc01) \ 639 $(support_includes) 640 endif 641 642 if TEST_spatomic01 643 sp_tests += spatomic01 644 sp_screens += spatomic01/spatomic01.scn 645 sp_docs += spatomic01/spatomic01.doc 646 spatomic01_SOURCES = spatomic01/init.c 647 spatomic01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spatomic01) \ 648 $(support_includes) 649 endif 650 651 if TEST_spcache01 652 sp_tests += spcache01 653 sp_screens += spcache01/spcache01.scn 654 sp_docs += spcache01/spcache01.doc 655 spcache01_SOURCES = spcache01/init.c 656 spcache01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spcache01) \ 657 $(support_includes) 658 endif 659 660 if TEST_spcbssched01 661 sp_tests += spcbssched01 662 sp_screens += spcbssched01/spcbssched01.scn 663 sp_docs += spcbssched01/spcbssched01.doc 664 spcbssched01_SOURCES = spcbssched01/init.c spcbssched01/task1.c \ 665 spcbssched01/system.h 666 spcbssched01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spcbssched01) \ 667 $(support_includes) 668 endif 669 670 if TEST_spcbssched02 671 sp_tests += spcbssched02 672 sp_screens += spcbssched02/spcbssched02.scn 673 sp_docs += spcbssched02/spcbssched02.doc 674 spcbssched02_SOURCES = spcbssched02/init.c \ 675 spcbssched02/task_periodic.c spcbssched02/system.h 676 spcbssched02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spcbssched02) \ 677 $(support_includes) 678 endif 679 680 if TEST_spcbssched03 681 sp_tests += spcbssched03 682 sp_screens += spcbssched03/spcbssched03.scn 683 sp_docs += spcbssched03/spcbssched03.doc 684 spcbssched03_SOURCES = spcbssched03/init.c \ 685 spcbssched03/tasks_periodic.c spcbssched03/tasks_aperiodic.c \ 686 spcbssched03/system.h spcbssched03/cbsparams.h 687 spcbssched03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spcbssched03) \ 688 $(support_includes) 689 endif 690 691 if TEST_spchain 692 sp_tests += spchain 693 sp_screens += spchain/spchain.scn 694 sp_docs += spchain/spchain.doc 695 spchain_SOURCES = spchain/init.c 696 spchain_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spchain) \ 697 $(support_includes) 698 endif 699 700 if TEST_spclock_err01 701 sp_tests += spclock_err01 702 sp_screens += spclock_err01/spclock_err01.scn 703 sp_docs += spclock_err01/spclock_err01.doc 704 spclock_err01_SOURCES = spclock_err01/init.c spclock_err01/delay.c \ 705 spclock_err01/system.h 706 spclock_err01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spclock_err01) \ 707 $(support_includes) 708 endif 709 710 if TEST_spclock_err02 711 sp_tests += spclock_err02 712 sp_screens += spclock_err02/spclock_err02.scn 713 sp_docs += spclock_err02/spclock_err02.doc 714 spclock_err02_SOURCES = spclock_err02/init.c 715 spclock_err02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spclock_err02) \ 716 $(support_includes) 717 endif 718 719 if TEST_spconsole01 720 sp_tests += spconsole01 721 sp_screens += spconsole01/spconsole01.scn 722 sp_docs += spconsole01/spconsole01.doc 723 spconsole01_SOURCES = spconsole01/init.c 724 spconsole01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spconsole01) \ 725 $(support_includes) 726 spconsole01_LDADD = -lm 727 endif 728 729 if TEST_spcontext01 730 sp_tests += spcontext01 731 sp_screens += spcontext01/spcontext01.scn 732 sp_docs += spcontext01/spcontext01.doc 733 spcontext01_SOURCES = spcontext01/init.c 734 spcontext01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spcontext01) \ 735 $(support_includes) 736 endif 737 738 if TEST_spcoverage 739 sp_tests += spcoverage 740 sp_screens += spcoverage/spcoverage.scn 741 sp_docs += spcoverage/spcoverage.doc 742 spcoverage_SOURCES = spcoverage/init.c 743 spcoverage_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spcoverage) \ 744 $(support_includes) -I$(top_srcdir)/include 745 endif 746 747 if TEST_spcpucounter01 748 sp_tests += spcpucounter01 749 sp_screens += spcpucounter01/spcpucounter01.scn 750 sp_docs += spcpucounter01/spcpucounter01.doc 751 spcpucounter01_SOURCES = spcpucounter01/init.c 752 spcpucounter01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spcpucounter01) \ 753 $(support_includes) 754 endif 755 756 if TEST_spcpuset01 757 sp_tests += spcpuset01 758 sp_screens += spcpuset01/spcpuset01.scn 759 sp_docs += spcpuset01/spcpuset01.doc 760 spcpuset01_SOURCES = spcpuset01/test.c spcpuset01/init.c 761 spcpuset01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spcpuset01) \ 762 $(support_includes) -DSMPTEST 763 endif 764 765 if TEST_spedfsched01 766 sp_tests += spedfsched01 767 sp_screens += spedfsched01/spedfsched01.scn 768 sp_docs += spedfsched01/spedfsched01.doc 769 spedfsched01_SOURCES = spedfsched01/init.c spedfsched01/task1.c \ 770 spedfsched01/system.h 771 spedfsched01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spedfsched01) \ 772 $(support_includes) 773 endif 774 775 if TEST_spedfsched02 776 sp_tests += spedfsched02 777 sp_screens += spedfsched02/spedfsched02.scn 778 sp_docs += spedfsched02/spedfsched02.doc 779 spedfsched02_SOURCES = spedfsched02/init.c spedfsched02/getall.c \ 780 spedfsched02/task1.c spedfsched02/system.h 781 spedfsched02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spedfsched02) \ 782 $(support_includes) 783 endif 784 785 if TEST_spedfsched03 786 sp_tests += spedfsched03 787 sp_screens += spedfsched03/spedfsched03.scn 788 sp_docs += spedfsched03/spedfsched03.doc 789 spedfsched03_SOURCES = spedfsched03/init.c \ 790 spedfsched03/tasks_periodic.c spedfsched03/tasks_aperiodic.c \ 791 spedfsched03/system.h spedfsched03/edfparams.h 792 spedfsched03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spedfsched03) \ 793 $(support_includes) 794 endif 795 796 if TEST_spedfsched04 797 sp_tests += spedfsched04 798 sp_screens += spedfsched04/spedfsched04.scn 799 sp_docs += spedfsched04/spedfsched04.doc 800 spedfsched04_SOURCES = spedfsched04/init.c ../support/src/spin.c 801 spedfsched04_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spedfsched04) \ 802 $(support_includes) 803 endif 804 805 if TEST_sperror01 806 sp_tests += sperror01 807 sp_screens += sperror01/sperror01.scn 808 sp_docs += sperror01/sperror01.doc 809 sperror01_SOURCES = sperror01/init.c 810 sperror01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sperror01) \ 811 $(support_includes) 812 endif 813 814 if TEST_sperror02 815 sp_tests += sperror02 816 sp_screens += sperror02/sperror02.scn 817 sp_docs += sperror02/sperror02.doc 818 sperror02_SOURCES = sperror02/init.c 819 sperror02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sperror02) \ 820 $(support_includes) 821 endif 822 823 if TEST_sperror03 824 sp_tests += sperror03 825 sp_screens += sperror03/sperror03.scn 826 sp_docs += sperror03/sperror03.doc 827 sperror03_SOURCES = sperror03/init.c 828 sperror03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sperror03) \ 829 $(support_includes) 830 endif 831 832 if TEST_spevent_err03 833 sp_tests += spevent_err03 834 sp_screens += spevent_err03/spevent_err03.scn 835 sp_docs += spevent_err03/spevent_err03.doc 836 spevent_err03_SOURCES = spevent_err03/init.c spevent_err03/system.h 837 spevent_err03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spevent_err03) \ 838 $(support_includes) 839 endif 840 841 if TEST_speventsystem01 842 sp_tests += speventsystem01 843 sp_screens += speventsystem01/speventsystem01.scn 844 sp_docs += speventsystem01/speventsystem01.doc 845 speventsystem01_SOURCES = speventsystem01/init.c 846 speventsystem01_CPPFLAGS = $(AM_CPPFLAGS) \ 847 $(TEST_FLAGS_speventsystem01) $(support_includes) 848 endif 849 850 if TEST_speventtransient01 851 sp_tests += speventtransient01 852 sp_screens += speventtransient01/speventtransient01.scn 853 sp_docs += speventtransient01/speventtransient01.doc 854 speventtransient01_SOURCES = speventtransient01/init.c 855 speventtransient01_CPPFLAGS = $(AM_CPPFLAGS) \ 856 $(TEST_FLAGS_speventtransient01) $(support_includes) 857 endif 858 859 if TEST_spextensions01 860 sp_tests += spextensions01 861 sp_screens += spextensions01/spextensions01.scn 862 sp_docs += spextensions01/spextensions01.doc 863 spextensions01_SOURCES = spextensions01/init.c 864 spextensions01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spextensions01) \ 865 $(support_includes) 866 endif 867 868 if TEST_spfatal01 869 sp_tests += spfatal01 870 sp_screens += spfatal01/spfatal01.scn 871 sp_docs += spfatal01/spfatal01.doc 872 spfatal01_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 873 spfatal01/testcase.h 874 spfatal01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal01) \ 875 $(support_includes) -I$(top_srcdir)/spfatal01 876 endif 877 878 if TEST_spfatal02 879 sp_tests += spfatal02 880 sp_screens += spfatal02/spfatal02.scn 881 sp_docs += spfatal02/spfatal02.doc 882 spfatal02_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 883 spfatal02/testcase.h 884 spfatal02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal02) \ 885 $(support_includes) -I$(top_srcdir)/spfatal02 886 endif 887 888 if TEST_spfatal03 889 sp_tests += spfatal03 890 sp_screens += spfatal03/spfatal03.scn 891 sp_docs += spfatal03/spfatal03.doc 892 spfatal03_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 893 spfatal03/testcase.h 894 spfatal03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal03) \ 895 $(support_includes) -I$(top_srcdir)/spfatal03 896 endif 897 898 if TEST_spfatal04 899 sp_tests += spfatal04 900 sp_screens += spfatal04/spfatal04.scn 901 sp_docs += spfatal04/spfatal04.doc 902 spfatal04_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 903 spfatal04/testcase.h 904 spfatal04_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal04) \ 905 $(support_includes) -I$(top_srcdir)/spfatal04 906 endif 907 908 if TEST_spfatal05 909 sp_tests += spfatal05 910 sp_screens += spfatal05/spfatal05.scn 911 sp_docs += spfatal05/spfatal05.doc 912 spfatal05_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 913 spfatal05/testcase.h 914 spfatal05_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal05) \ 915 $(support_includes) -I$(top_srcdir)/spfatal05 916 endif 917 918 if TEST_spfatal06 919 sp_tests += spfatal06 920 sp_screens += spfatal06/spfatal06.scn 921 sp_docs += spfatal06/spfatal06.doc 922 spfatal06_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 923 spfatal06/testcase.h 924 spfatal06_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal06) \ 925 $(support_includes) -I$(top_srcdir)/spfatal06 926 endif 927 928 if TEST_spfatal07 929 sp_tests += spfatal07 930 sp_screens += spfatal07/spfatal07.scn 931 sp_docs += spfatal07/spfatal07.doc 932 spfatal07_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 933 spfatal07/testcase.h 934 spfatal07_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal07) \ 935 $(support_includes) -I$(top_srcdir)/spfatal07 936 endif 937 938 if TEST_spfatal08 939 sp_tests += spfatal08 940 sp_screens += spfatal08/spfatal08.scn 941 sp_docs += spfatal08/spfatal08.doc 942 spfatal08_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 943 spfatal08/testcase.h 944 spfatal08_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal08) \ 945 $(support_includes) -I$(top_srcdir)/spfatal08 946 endif 947 948 if TEST_spfatal09 949 sp_tests += spfatal09 950 sp_screens += spfatal09/spfatal09.scn 951 sp_docs += spfatal09/spfatal09.doc 952 spfatal09_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 953 spfatal09/testcase.h 954 spfatal09_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal09) \ 955 $(support_includes) -I$(top_srcdir)/spfatal09 956 endif 957 958 if TEST_spfatal10 959 sp_tests += spfatal10 960 sp_screens += spfatal10/spfatal10.scn 961 sp_docs += spfatal10/spfatal10.doc 962 spfatal10_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 963 spfatal10/testcase.h 964 spfatal10_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal10) \ 965 $(support_includes) -I$(top_srcdir)/spfatal10 966 endif 967 968 if TEST_spfatal11 969 sp_tests += spfatal11 970 sp_screens += spfatal11/spfatal11.scn 971 sp_docs += spfatal11/spfatal11.doc 972 spfatal11_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 973 spfatal11/testcase.h 974 spfatal11_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal11) \ 975 $(support_includes) -I$(top_srcdir)/spfatal11 976 endif 977 978 if TEST_spfatal12 979 sp_tests += spfatal12 980 sp_screens += spfatal12/spfatal12.scn 981 sp_docs += spfatal12/spfatal12.doc 982 spfatal12_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 983 spfatal12/testcase.h 984 spfatal12_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal12) \ 985 $(support_includes) -I$(top_srcdir)/spfatal12 986 endif 987 988 if TEST_spfatal13 989 sp_tests += spfatal13 990 sp_screens += spfatal13/spfatal13.scn 991 sp_docs += spfatal13/spfatal13.doc 992 spfatal13_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 993 spfatal13/testcase.h 994 spfatal13_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal13) \ 995 $(support_includes) -I$(top_srcdir)/spfatal13 996 endif 997 998 if TEST_spfatal14 999 sp_tests += spfatal14 1000 sp_screens += spfatal14/spfatal14.scn 1001 sp_docs += spfatal14/spfatal14.doc 1002 spfatal14_SOURCES = spfatal_support/init.c \ 1003 spfatal_support/consume_sems.c spfatal_support/system.h \ 1004 spfatal14/testcase.h 1005 spfatal14_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal14) \ 1006 $(support_includes) -I$(top_srcdir)/spfatal14 1007 endif 1008 1009 if TEST_spfatal15 1010 sp_tests += spfatal15 1011 sp_screens += spfatal15/spfatal15.scn 1012 sp_docs += spfatal15/spfatal15.doc 1013 spfatal15_SOURCES = spfatal_support/init.c \ 1014 spfatal_support/consume_sems.c spfatal_support/system.h \ 1015 spfatal15/testcase.h 1016 spfatal15_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal15) \ 1017 $(support_includes) -I$(top_srcdir)/spfatal15 1018 endif 1019 1020 if TEST_spfatal16 1021 sp_tests += spfatal16 1022 sp_screens += spfatal16/spfatal16.scn 1023 sp_docs += spfatal16/spfatal16.doc 1024 spfatal16_SOURCES = spfatal_support/init.c \ 1025 spfatal_support/consume_sems.c spfatal_support/system.h \ 1026 spfatal16/testcase.h 1027 spfatal16_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal16) \ 1028 $(support_includes) -I$(top_srcdir)/spfatal16 \ 1029 -DSEMAPHORES_REMAINING=4 1030 endif 1031 1032 if TEST_spfatal24 1033 sp_tests += spfatal24 1034 sp_screens += spfatal24/spfatal24.scn 1035 sp_docs += spfatal24/spfatal24.doc 1036 spfatal24_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 1037 spfatal24/testcase.h 1038 spfatal24_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal24) \ 1039 $(support_includes) -I$(top_srcdir)/spfatal24 1040 endif 1041 1042 if TEST_spfatal25 1043 sp_tests += spfatal25 1044 sp_screens += spfatal25/spfatal25.scn 1045 sp_docs += spfatal25/spfatal25.doc 1046 spfatal25_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 1047 spfatal25/testcase.h 1048 spfatal25_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal25) \ 1049 $(support_includes) -I$(top_srcdir)/spfatal25 1050 endif 1051 1052 if TEST_spfatal26 1053 sp_tests += spfatal26 1054 sp_screens += spfatal26/spfatal26.scn 1055 sp_docs += spfatal26/spfatal26.doc 1056 spfatal26_SOURCES = spfatal26/init.c 1057 spfatal26_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal26) \ 1058 $(support_includes) 1059 endif 1060 1061 if TEST_spfatal27 1062 sp_tests += spfatal27 1063 sp_screens += spfatal27/spfatal27.scn 1064 sp_docs += spfatal27/spfatal27.doc 1065 spfatal27_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 1066 spfatal27/testcase.h 1067 spfatal27_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal27) \ 1068 $(support_includes) -I$(top_srcdir)/spfatal27 1069 endif 1070 1071 if TEST_spfatal28 1072 sp_tests += spfatal28 1073 sp_screens += spfatal28/spfatal28.scn 1074 sp_docs += spfatal28/spfatal28.doc 1075 spfatal28_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 1076 spfatal28/testcase.h 1077 spfatal28_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal28) \ 1078 $(support_includes) -I$(top_srcdir)/spfatal28 1079 endif 1080 1081 if TEST_spfatal29 1082 sp_tests += spfatal29 1083 sp_screens += spfatal29/spfatal29.scn 1084 sp_docs += spfatal29/spfatal29.doc 1085 spfatal29_SOURCES = spfatal_support/init.c spfatal_support/system.h \ 1086 spfatal29/testcase.h 1087 spfatal29_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal29) \ 1088 $(support_includes) -I$(top_srcdir)/spfatal29 1089 endif 1090 1091 if TEST_spfatal30 1092 sp_tests += spfatal30 1093 sp_screens += spfatal30/spfatal30.scn 1094 sp_docs += spfatal30/spfatal30.doc 1095 spfatal30_SOURCES = spfatal30/init.c 1096 spfatal30_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal30) \ 1097 $(support_includes) 1098 endif 1099 1100 if TEST_spfatal31 1101 sp_tests += spfatal31 1102 sp_screens += spfatal31/spfatal31.scn 1103 sp_docs += spfatal31/spfatal31.doc 1104 spfatal31_SOURCES = spfatal31/init.c 1105 spfatal31_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfatal31) \ 1106 $(support_includes) 1107 endif 1108 1109 if TEST_spfifo01 1110 sp_tests += spfifo01 1111 sp_screens += spfifo01/spfifo01.scn 1112 sp_docs += spfifo01/spfifo01.doc 1113 spfifo01_SOURCES = spfifo01/init.c 1114 spfifo01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfifo01) \ 1115 $(support_includes) 1116 endif 1117 1118 if TEST_spfifo02 1119 sp_tests += spfifo02 1120 sp_screens += spfifo02/spfifo02.scn 1121 sp_docs += spfifo02/spfifo02.doc 1122 spfifo02_SOURCES = spfifo02/init.c 1123 spfifo02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfifo02) \ 1124 $(support_includes) 1125 endif 1126 1127 if TEST_spfifo03 1128 sp_tests += spfifo03 1129 sp_screens += spfifo03/spfifo03.scn 1130 sp_docs += spfifo03/spfifo03.doc 1131 spfifo03_SOURCES = spfifo03/init.c 1132 spfifo03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfifo03) \ 1133 $(support_includes) 1134 endif 1135 1136 if TEST_spfifo04 1137 sp_tests += spfifo04 1138 sp_screens += spfifo04/spfifo04.scn 1139 sp_docs += spfifo04/spfifo04.doc 1140 spfifo04_SOURCES = spfifo04/init.c 1141 spfifo04_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfifo04) \ 1142 $(support_includes) 1143 endif 1144 1145 if TEST_spfifo05 1146 sp_tests += spfifo05 1147 sp_screens += spfifo05/spfifo05.scn 1148 sp_docs += spfifo05/spfifo05.doc 1149 spfifo05_SOURCES = spfifo05/init.c 1150 spfifo05_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfifo05) \ 1151 $(support_includes) 1152 endif 1153 1154 if TEST_spfreechain01 1155 sp_tests += spfreechain01 1156 sp_screens += spfreechain01/spfreechain01.scn 1157 sp_docs += spfreechain01/spfreechain01.doc 1158 spfreechain01_SOURCES = spfreechain01/init.c 1159 spfreechain01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spfreechain01) \ 1160 $(support_includes) 1161 endif 1162 70 1163 if HAS_CPLUSPLUS 71 _SUBDIRS += spglobalcon01 72 _SUBDIRS += sptls02 73 endif 74 _SUBDIRS += spglobalcon02 75 _SUBDIRS += sptls01 76 _SUBDIRS += spintrcritical20 77 _SUBDIRS += spintrcritical21 78 _SUBDIRS += spcontext01 79 _SUBDIRS += spfatal26 80 _SUBDIRS += speventtransient01 81 _SUBDIRS += speventsystem01 82 _SUBDIRS += spinternalerror01 83 _SUBDIRS += spinternalerror02 84 _SUBDIRS += sptimer_err01 sptimer_err02 85 _SUBDIRS += sptimerserver01 86 _SUBDIRS += spclock_err02 87 _SUBDIRS += spcpuset01 88 _SUBDIRS += spversion01 89 90 include $(top_srcdir)/../automake/subdirs.am 1164 if TEST_spglobalcon01 1165 sp_tests += spglobalcon01 1166 sp_screens += spglobalcon01/spglobalcon01.scn 1167 sp_docs += spglobalcon01/spglobalcon01.doc 1168 spglobalcon01_SOURCES = spglobalcon01/init.cc 1169 spglobalcon01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spglobalcon01) \ 1170 $(support_includes) 1171 endif 1172 endif 1173 1174 if TEST_spglobalcon02 1175 sp_tests += spglobalcon02 1176 sp_screens += spglobalcon02/spglobalcon02.scn 1177 sp_docs += spglobalcon02/spglobalcon02.doc 1178 spglobalcon02_SOURCES = spglobalcon02/init.c 1179 spglobalcon02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spglobalcon02) \ 1180 $(support_includes) 1181 endif 1182 1183 if TEST_spheapprot 1184 sp_tests += spheapprot 1185 sp_screens += spheapprot/spheapprot.scn 1186 sp_docs += spheapprot/spheapprot.doc 1187 spheapprot_SOURCES = spheapprot/init.c 1188 spheapprot_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spheapprot) \ 1189 $(support_includes) 1190 endif 1191 1192 if TEST_spinternalerror01 1193 sp_tests += spinternalerror01 1194 sp_screens += spinternalerror01/spinternalerror01.scn 1195 sp_docs += spinternalerror01/spinternalerror01.doc 1196 spinternalerror01_SOURCES = spinternalerror01/init.c 1197 spinternalerror01_CPPFLAGS = $(AM_CPPFLAGS) \ 1198 $(TEST_FLAGS_spinternalerror01) $(support_includes) 1199 endif 1200 1201 if TEST_spinternalerror02 1202 sp_tests += spinternalerror02 1203 sp_screens += spinternalerror02/spinternalerror02.scn 1204 sp_docs += spinternalerror02/spinternalerror02.doc 1205 spinternalerror02_SOURCES = spinternalerror02/init.c 1206 spinternalerror02_CPPFLAGS = $(AM_CPPFLAGS) \ 1207 $(TEST_FLAGS_spinternalerror02) $(support_includes) 1208 endif 1209 1210 if TEST_spintr_err01 1211 sp_tests += spintr_err01 1212 sp_screens += spintr_err01/spintr_err01.scn 1213 sp_docs += spintr_err01/spintr_err01.doc 1214 spintr_err01_SOURCES = spintr_err01/init.c spintr_err01/isr.c \ 1215 spintr_err01/system.h 1216 spintr_err01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spintr_err01) \ 1217 $(support_includes) 1218 endif 1219 1220 if TEST_spintrcritical01 1221 sp_tests += spintrcritical01 1222 sp_screens += spintrcritical01/spintrcritical01.scn 1223 sp_docs += spintrcritical01/spintrcritical01.doc 1224 spintrcritical01_SOURCES = spintrcritical01/init.c \ 1225 spintrcritical_support/intrcritical.c \ 1226 spintrcritical_support/intrcritical.h 1227 spintrcritical01_CPPFLAGS = $(AM_CPPFLAGS) \ 1228 $(TEST_FLAGS_spintrcritical01) $(support_includes) \ 1229 -I$(top_srcdir)/spintrcritical_support -DFIFO_NO_TIMEOUT 1230 endif 1231 1232 if TEST_spintrcritical02 1233 sp_tests += spintrcritical02 1234 sp_screens += spintrcritical02/spintrcritical02.scn 1235 sp_docs += spintrcritical02/spintrcritical02.doc 1236 spintrcritical02_SOURCES = spintrcritical01/init.c \ 1237 spintrcritical_support/intrcritical.c 1238 spintrcritical02_CPPFLAGS = $(AM_CPPFLAGS) \ 1239 $(TEST_FLAGS_spintrcritical02) $(support_includes) \ 1240 -I$(top_srcdir)/spintrcritical_support -DFIFO_WITH_TIMEOUT 1241 endif 1242 1243 if TEST_spintrcritical03 1244 sp_tests += spintrcritical03 1245 sp_screens += spintrcritical03/spintrcritical03.scn 1246 sp_docs += spintrcritical03/spintrcritical03.doc 1247 spintrcritical03_SOURCES = spintrcritical01/init.c \ 1248 spintrcritical_support/intrcritical.c 1249 spintrcritical03_CPPFLAGS = $(AM_CPPFLAGS) \ 1250 $(TEST_FLAGS_spintrcritical03) $(support_includes) \ 1251 -I$(top_srcdir)/spintrcritical_support -DPRIORITY_NO_TIMEOUT 1252 endif 1253 1254 if TEST_spintrcritical04 1255 sp_tests += spintrcritical04 1256 sp_screens += spintrcritical04/spintrcritical04.scn 1257 sp_docs += spintrcritical04/spintrcritical04.doc 1258 spintrcritical04_SOURCES = spintrcritical01/init.c \ 1259 spintrcritical_support/intrcritical.c 1260 spintrcritical04_CPPFLAGS = $(AM_CPPFLAGS) \ 1261 $(TEST_FLAGS_spintrcritical04) $(support_includes) \ 1262 -I$(top_srcdir)/spintrcritical_support -DPRIORITY_WITH_TIMEOUT 1263 endif 1264 1265 if TEST_spintrcritical05 1266 sp_tests += spintrcritical05 1267 sp_screens += spintrcritical05/spintrcritical05.scn 1268 sp_docs += spintrcritical05/spintrcritical05.doc 1269 spintrcritical05_SOURCES = spintrcritical01/init.c \ 1270 spintrcritical_support/intrcritical.c 1271 spintrcritical05_CPPFLAGS = $(AM_CPPFLAGS) \ 1272 $(TEST_FLAGS_spintrcritical05) $(support_includes) \ 1273 -I$(top_srcdir)/spintrcritical_support -DPRIORITY_NO_TIMEOUT_REVERSE 1274 endif 1275 1276 if TEST_spintrcritical06 1277 sp_tests += spintrcritical06 1278 sp_screens += spintrcritical06/spintrcritical06.scn 1279 sp_docs += spintrcritical06/spintrcritical06.doc 1280 spintrcritical06_SOURCES = spintrcritical06/init.c \ 1281 spintrcritical_support/intrcritical.c \ 1282 spintrcritical_support/intrcritical.h 1283 spintrcritical06_CPPFLAGS = $(AM_CPPFLAGS) \ 1284 $(TEST_FLAGS_spintrcritical06) $(support_includes) \ 1285 -I$(top_srcdir)/spintrcritical_support -DPRIORITY_NO_TIMEOUT_FORWARD 1286 endif 1287 1288 if TEST_spintrcritical07 1289 sp_tests += spintrcritical07 1290 sp_screens += spintrcritical07/spintrcritical07.scn 1291 sp_docs += spintrcritical07/spintrcritical07.doc 1292 spintrcritical07_SOURCES = spintrcritical06/init.c \ 1293 spintrcritical_support/intrcritical.c 1294 spintrcritical07_CPPFLAGS = $(AM_CPPFLAGS) \ 1295 $(TEST_FLAGS_spintrcritical07) $(support_includes) \ 1296 -I$(top_srcdir)/spintrcritical_support -DPRIORITY_NO_TIMEOUT_REVERSE 1297 endif 1298 1299 if TEST_spintrcritical08 1300 sp_tests += spintrcritical08 1301 sp_screens += spintrcritical08/spintrcritical08.scn 1302 sp_docs += spintrcritical08/spintrcritical08.doc 1303 spintrcritical08_SOURCES = spintrcritical08/init.c \ 1304 spintrcritical_support/intrcritical.c \ 1305 spintrcritical_support/intrcritical.h 1306 spintrcritical08_CPPFLAGS = $(AM_CPPFLAGS) \ 1307 $(TEST_FLAGS_spintrcritical08) $(support_includes) \ 1308 -I$(top_srcdir)/spintrcritical_support 1309 endif 1310 1311 if TEST_spintrcritical09 1312 sp_tests += spintrcritical09 1313 sp_screens += spintrcritical09/spintrcritical09.scn 1314 sp_docs += spintrcritical09/spintrcritical09.doc 1315 spintrcritical09_SOURCES = spintrcritical09/init.c \ 1316 spintrcritical_support/intrcritical.c \ 1317 spintrcritical_support/intrcritical.h 1318 spintrcritical09_CPPFLAGS = $(AM_CPPFLAGS) \ 1319 $(TEST_FLAGS_spintrcritical09) $(support_includes) \ 1320 -I$(top_srcdir)/spintrcritical_support 1321 endif 1322 1323 if TEST_spintrcritical10 1324 sp_tests += spintrcritical10 1325 sp_screens += spintrcritical10/spintrcritical10.scn 1326 sp_docs += spintrcritical10/spintrcritical10.doc 1327 spintrcritical10_SOURCES = spintrcritical10/init.c \ 1328 spintrcritical_support/intrcritical.c \ 1329 spintrcritical_support/intrcritical.h 1330 spintrcritical10_CPPFLAGS = $(AM_CPPFLAGS) \ 1331 $(TEST_FLAGS_spintrcritical10) $(support_includes) \ 1332 -I$(top_srcdir)/spintrcritical_support 1333 endif 1334 1335 if TEST_spintrcritical11 1336 sp_tests += spintrcritical11 1337 sp_screens += spintrcritical11/spintrcritical11.scn 1338 sp_docs += spintrcritical11/spintrcritical11.doc 1339 spintrcritical11_SOURCES = spintrcritical11/init.c \ 1340 spintrcritical_support/intrcritical.c \ 1341 spintrcritical_support/intrcritical.h 1342 spintrcritical11_CPPFLAGS = $(AM_CPPFLAGS) \ 1343 $(TEST_FLAGS_spintrcritical11) $(support_includes) \ 1344 -I$(top_srcdir)/spintrcritical_support -DEVENT_ANY 1345 endif 1346 1347 if TEST_spintrcritical12 1348 sp_tests += spintrcritical12 1349 sp_screens += spintrcritical12/spintrcritical12.scn 1350 sp_docs += spintrcritical12/spintrcritical12.doc 1351 spintrcritical12_SOURCES = spintrcritical11/init.c \ 1352 spintrcritical_support/intrcritical.c 1353 spintrcritical12_CPPFLAGS = $(AM_CPPFLAGS) \ 1354 $(TEST_FLAGS_spintrcritical12) $(support_includes) \ 1355 -I$(top_srcdir)/spintrcritical_support -DEVENT_ALL 1356 endif 1357 1358 if TEST_spintrcritical13 1359 sp_tests += spintrcritical13 1360 sp_screens += spintrcritical13/spintrcritical13.scn 1361 sp_docs += spintrcritical13/spintrcritical13.doc 1362 spintrcritical13_SOURCES = spintrcritical13/init.c \ 1363 spintrcritical_support/intrcritical.c \ 1364 spintrcritical_support/intrcritical.h 1365 spintrcritical13_CPPFLAGS = $(AM_CPPFLAGS) \ 1366 $(TEST_FLAGS_spintrcritical13) $(support_includes) \ 1367 -I$(top_srcdir)/spintrcritical_support -DFIRE_AFTER 1368 endif 1369 1370 if TEST_spintrcritical14 1371 sp_tests += spintrcritical14 1372 sp_screens += spintrcritical14/spintrcritical14.scn 1373 sp_docs += spintrcritical14/spintrcritical14.doc 1374 spintrcritical14_SOURCES = spintrcritical13/init.c \ 1375 spintrcritical_support/intrcritical.c 1376 spintrcritical14_CPPFLAGS = $(AM_CPPFLAGS) \ 1377 $(TEST_FLAGS_spintrcritical14) $(support_includes) \ 1378 -I$(top_srcdir)/spintrcritical_support -DSERVER_FIRE_AFTER 1379 endif 1380 1381 if TEST_spintrcritical15 1382 sp_tests += spintrcritical15 1383 sp_screens += spintrcritical15/spintrcritical15.scn 1384 sp_docs += spintrcritical15/spintrcritical15.doc 1385 spintrcritical15_SOURCES = spintrcritical15/init.c \ 1386 spintrcritical_support/intrcritical.c \ 1387 spintrcritical_support/intrcritical.h 1388 spintrcritical15_CPPFLAGS = $(AM_CPPFLAGS) \ 1389 $(TEST_FLAGS_spintrcritical15) $(support_includes) \ 1390 -I$(top_srcdir)/spintrcritical_support 1391 endif 1392 1393 if TEST_spintrcritical16 1394 sp_tests += spintrcritical16 1395 sp_screens += spintrcritical16/spintrcritical16.scn 1396 sp_docs += spintrcritical16/spintrcritical16.doc 1397 spintrcritical16_SOURCES = spintrcritical16/init.c \ 1398 spintrcritical_support/intrcritical.c \ 1399 spintrcritical_support/intrcritical.h 1400 spintrcritical16_CPPFLAGS = $(AM_CPPFLAGS) \ 1401 $(TEST_FLAGS_spintrcritical16) $(support_includes) \ 1402 -I$(top_srcdir)/spintrcritical_support 1403 endif 1404 1405 if TEST_spintrcritical18 1406 sp_tests += spintrcritical18 1407 sp_screens += spintrcritical18/spintrcritical18.scn 1408 sp_docs += spintrcritical18/spintrcritical18.doc 1409 spintrcritical18_SOURCES = spintrcritical18/init.c \ 1410 spintrcritical_support/intrcritical.h \ 1411 spintrcritical_support/intrcritical.c 1412 spintrcritical18_CPPFLAGS = $(AM_CPPFLAGS) \ 1413 $(TEST_FLAGS_spintrcritical18) $(support_includes) \ 1414 -I$(top_srcdir)/spintrcritical_support 1415 endif 1416 1417 if TEST_spintrcritical20 1418 sp_tests += spintrcritical20 1419 sp_screens += spintrcritical20/spintrcritical20.scn 1420 sp_docs += spintrcritical20/spintrcritical20.doc 1421 spintrcritical20_SOURCES = spintrcritical20/init.c \ 1422 spintrcritical_support/intrcritical.c 1423 spintrcritical20_CPPFLAGS = $(AM_CPPFLAGS) \ 1424 $(TEST_FLAGS_spintrcritical20) $(support_includes) \ 1425 -I$(top_srcdir)/spintrcritical_support 1426 endif 1427 1428 if TEST_spintrcritical21 1429 sp_tests += spintrcritical21 1430 sp_screens += spintrcritical21/spintrcritical21.scn 1431 sp_docs += spintrcritical21/spintrcritical21.doc 1432 spintrcritical21_SOURCES = spintrcritical21/init.c \ 1433 spintrcritical_support/intrcritical.c 1434 spintrcritical21_CPPFLAGS = $(AM_CPPFLAGS) \ 1435 $(TEST_FLAGS_spintrcritical21) $(support_includes) \ 1436 -I$(top_srcdir)/spintrcritical_support 1437 endif 1438 1439 if TEST_spintrcritical22 1440 sp_tests += spintrcritical22 1441 sp_screens += spintrcritical22/spintrcritical22.scn 1442 sp_docs += spintrcritical22/spintrcritical22.doc 1443 spintrcritical22_SOURCES = spintrcritical22/init.c \ 1444 spintrcritical_support/intrcritical.h \ 1445 spintrcritical_support/intrcritical.c 1446 spintrcritical22_CPPFLAGS = $(AM_CPPFLAGS) \ 1447 $(TEST_FLAGS_spintrcritical22) $(support_includes) \ 1448 -I$(top_srcdir)/spintrcritical_support 1449 endif 1450 1451 if TEST_spintrcritical23 1452 sp_tests += spintrcritical23 1453 sp_screens += spintrcritical23/spintrcritical23.scn 1454 sp_docs += spintrcritical23/spintrcritical23.doc 1455 spintrcritical23_SOURCES = spintrcritical23/init.c \ 1456 spintrcritical_support/intrcritical.h \ 1457 spintrcritical_support/intrcritical.c 1458 spintrcritical23_CPPFLAGS = $(AM_CPPFLAGS) \ 1459 $(TEST_FLAGS_spintrcritical23) $(support_includes) \ 1460 -I$(top_srcdir)/spintrcritical_support 1461 endif 1462 1463 if TEST_spintrcritical24 1464 sp_tests += spintrcritical24 1465 sp_screens += spintrcritical24/spintrcritical24.scn 1466 sp_docs += spintrcritical24/spintrcritical24.doc 1467 spintrcritical24_SOURCES = spintrcritical24/init.c \ 1468 spintrcritical_support/intrcritical.h \ 1469 spintrcritical_support/intrcritical.c 1470 spintrcritical24_CPPFLAGS = $(AM_CPPFLAGS) \ 1471 $(TEST_FLAGS_spintrcritical24) $(support_includes) \ 1472 -I$(top_srcdir)/spintrcritical_support 1473 endif 1474 1475 if TEST_splinkersets01 1476 sp_tests += splinkersets01 1477 sp_screens += splinkersets01/splinkersets01.scn 1478 sp_docs += splinkersets01/splinkersets01.doc 1479 splinkersets01_SOURCES = splinkersets01/init.c 1480 splinkersets01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_splinkersets01) \ 1481 $(support_includes) 1482 splinkersets01_LDADD = libsplinkersets01.a 1483 endif 1484 1485 if TEST_spmkdir 1486 sp_tests += spmkdir 1487 sp_screens += spmkdir/spmkdir.scn 1488 sp_docs += spmkdir/spmkdir.doc 1489 spmkdir_SOURCES = spmkdir/init.c 1490 spmkdir_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spmkdir) \ 1491 $(support_includes) 1492 endif 1493 1494 if TEST_spmountmgr01 1495 sp_tests += spmountmgr01 1496 sp_screens += spmountmgr01/spmountmgr01.scn 1497 sp_docs += spmountmgr01/spmountmgr01.doc 1498 spmountmgr01_SOURCES = spmountmgr01/init.c 1499 spmountmgr01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spmountmgr01) \ 1500 $(support_includes) 1501 endif 1502 1503 if TEST_spmrsp01 1504 sp_tests += spmrsp01 1505 sp_screens += spmrsp01/spmrsp01.scn 1506 sp_docs += spmrsp01/spmrsp01.doc 1507 spmrsp01_SOURCES = spmrsp01/init.c 1508 spmrsp01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spmrsp01) \ 1509 $(support_includes) 1510 endif 1511 1512 if TEST_spmsgq_err01 1513 sp_tests += spmsgq_err01 1514 sp_screens += spmsgq_err01/spmsgq_err01.scn 1515 sp_docs += spmsgq_err01/spmsgq_err01.doc 1516 spmsgq_err01_SOURCES = spmsgq_err01/init.c spmsgq_err01/system.h 1517 spmsgq_err01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spmsgq_err01) \ 1518 $(support_includes) 1519 endif 1520 1521 if TEST_spmsgq_err02 1522 sp_tests += spmsgq_err02 1523 sp_screens += spmsgq_err02/spmsgq_err02.scn 1524 sp_docs += spmsgq_err02/spmsgq_err02.doc 1525 spmsgq_err02_SOURCES = spmsgq_err02/init.c spmsgq_err02/task3.c \ 1526 spmsgq_err02/system.h 1527 spmsgq_err02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spmsgq_err02) \ 1528 $(support_includes) 1529 endif 1530 1531 if TEST_spmutex01 1532 sp_tests += spmutex01 1533 sp_screens += spmutex01/spmutex01.scn 1534 sp_docs += spmutex01/spmutex01.doc 1535 spmutex01_SOURCES = spmutex01/init.c 1536 spmutex01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spmutex01) \ 1537 $(support_includes) 1538 endif 1539 1540 if TEST_spnsext01 1541 sp_tests += spnsext01 1542 sp_screens += spnsext01/spnsext01.scn 1543 sp_docs += spnsext01/spnsext01.doc 1544 spnsext01_SOURCES = spnsext01/init.c 1545 spnsext01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spnsext01) \ 1546 $(support_includes) 1547 endif 1548 1549 if TEST_spobjgetnext 1550 sp_tests += spobjgetnext 1551 sp_screens += spobjgetnext/spobjgetnext.scn 1552 sp_docs += spobjgetnext/spobjgetnext.doc 1553 spobjgetnext_SOURCES = spobjgetnext/init.c spobjgetnext/system.h 1554 spobjgetnext_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spobjgetnext) \ 1555 $(support_includes) 1556 endif 1557 1558 if TEST_sppagesize 1559 sp_tests += sppagesize 1560 sp_screens += sppagesize/sppagesize.scn 1561 sp_docs += sppagesize/sppagesize.doc 1562 sppagesize_SOURCES = sppagesize/init.c 1563 sppagesize_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sppagesize) \ 1564 $(support_includes) 1565 endif 1566 1567 if TEST_sppartition_err01 1568 sp_tests += sppartition_err01 1569 sp_screens += sppartition_err01/sppartition_err01.scn 1570 sp_docs += sppartition_err01/sppartition_err01.doc 1571 sppartition_err01_SOURCES = sppartition_err01/init.c \ 1572 sppartition_err01/system.h 1573 sppartition_err01_CPPFLAGS = $(AM_CPPFLAGS) \ 1574 $(TEST_FLAGS_sppartition_err01) $(support_includes) 1575 endif 1576 1577 if TEST_spport_err01 1578 sp_tests += spport_err01 1579 sp_screens += spport_err01/spport_err01.scn 1580 sp_docs += spport_err01/spport_err01.doc 1581 spport_err01_SOURCES = spport_err01/init.c spport_err01/system.h 1582 spport_err01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spport_err01) \ 1583 $(support_includes) 1584 endif 1585 1586 if TEST_spprintk 1587 sp_tests += spprintk 1588 sp_screens += spprintk/spprintk.scn 1589 sp_docs += spprintk/spprintk.doc 1590 spprintk_SOURCES = spprintk/init.c 1591 spprintk_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spprintk) \ 1592 $(support_includes) 1593 endif 1594 1595 if TEST_spprivenv01 1596 sp_tests += spprivenv01 1597 sp_screens += spprivenv01/spprivenv01.scn 1598 sp_docs += spprivenv01/spprivenv01.doc 1599 spprivenv01_SOURCES = spprivenv01/init.c 1600 spprivenv01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spprivenv01) \ 1601 $(support_includes) 1602 endif 1603 1604 if TEST_spprofiling01 1605 sp_tests += spprofiling01 1606 sp_screens += spprofiling01/spprofiling01.scn 1607 sp_docs += spprofiling01/spprofiling01.doc 1608 spprofiling01_SOURCES = spprofiling01/init.c 1609 spprofiling01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spprofiling01) \ 1610 $(support_includes) 1611 endif 1612 1613 if TEST_spqreslib 1614 sp_tests += spqreslib 1615 sp_screens += spqreslib/spqreslib.scn 1616 sp_docs += spqreslib/spqreslib.doc 1617 spqreslib_SOURCES = spqreslib/init.c spqreslib/task_periodic.c \ 1618 spqreslib/system.h 1619 spqreslib_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spqreslib) \ 1620 $(support_includes) 1621 spqreslib_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel) 1622 endif 1623 1624 if TEST_spratemon_err01 1625 sp_tests += spratemon_err01 1626 sp_screens += spratemon_err01/spratemon_err01.scn 1627 sp_docs += spratemon_err01/spratemon_err01.doc 1628 spratemon_err01_SOURCES = spratemon_err01/init.c \ 1629 spratemon_err01/screen10.c spratemon_err01/task4.c \ 1630 spratemon_err01/system.h 1631 spratemon_err01_CPPFLAGS = $(AM_CPPFLAGS) \ 1632 $(TEST_FLAGS_spratemon_err01) $(support_includes) 1633 endif 1634 1635 if TEST_sprbtree01 1636 sp_tests += sprbtree01 1637 sp_screens += sprbtree01/sprbtree01.scn 1638 sp_docs += sprbtree01/sprbtree01.doc 1639 sprbtree01_SOURCES = sprbtree01/init.c 1640 sprbtree01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sprbtree01) \ 1641 $(support_includes) 1642 endif 1643 1644 if TEST_spregion_err01 1645 sp_tests += spregion_err01 1646 sp_screens += spregion_err01/spregion_err01.scn 1647 sp_docs += spregion_err01/spregion_err01.doc 1648 spregion_err01_SOURCES = spregion_err01/init.c spregion_err01/system.h 1649 spregion_err01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spregion_err01) \ 1650 $(support_includes) 1651 endif 1652 1653 if TEST_sprmsched01 1654 sp_tests += sprmsched01 1655 sp_screens += sprmsched01/sprmsched01.scn 1656 sp_docs += sprmsched01/sprmsched01.doc 1657 sprmsched01_SOURCES = sprmsched01/init.c ../support/src/spin.c 1658 sprmsched01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sprmsched01) \ 1659 $(support_includes) 1660 endif 1661 1662 if TEST_sprmsched02 1663 sp_tests += sprmsched02 1664 sp_screens += sprmsched02/sprmsched02.scn 1665 sp_docs += sprmsched02/sprmsched02.doc 1666 sprmsched02_SOURCES = sprmsched02/init.c ../support/src/spin.c 1667 sprmsched02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sprmsched02) \ 1668 $(support_includes) 1669 endif 1670 1671 if TEST_spscheduler01 1672 sp_tests += spscheduler01 1673 sp_screens += spscheduler01/spscheduler01.scn 1674 sp_docs += spscheduler01/spscheduler01.doc 1675 spscheduler01_SOURCES = spscheduler01/init.c 1676 spscheduler01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spscheduler01) \ 1677 $(support_includes) 1678 endif 1679 1680 if TEST_spsem01 1681 sp_tests += spsem01 1682 sp_screens += spsem01/spsem01.scn 1683 sp_docs += spsem01/spsem01.doc 1684 spsem01_SOURCES = spsem01/init.c 1685 spsem01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spsem01) \ 1686 $(support_includes) 1687 endif 1688 1689 if TEST_spsem02 1690 sp_tests += spsem02 1691 sp_screens += spsem02/spsem02.scn 1692 sp_docs += spsem02/spsem02.doc 1693 spsem02_SOURCES = spsem02/init.c 1694 spsem02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spsem02) \ 1695 $(support_includes) 1696 endif 1697 1698 if TEST_spsem03 1699 sp_tests += spsem03 1700 sp_screens += spsem03/spsem03.scn 1701 sp_docs += spsem03/spsem03.doc 1702 spsem03_SOURCES = spsem03/init.c 1703 spsem03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spsem03) \ 1704 $(support_includes) 1705 endif 1706 1707 if TEST_spsem_err01 1708 sp_tests += spsem_err01 1709 sp_screens += spsem_err01/spsem_err01.scn 1710 sp_docs += spsem_err01/spsem_err01.doc 1711 spsem_err01_SOURCES = spsem_err01/init.c spsem_err01/system.h 1712 spsem_err01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spsem_err01) \ 1713 $(support_includes) 1714 endif 1715 1716 if TEST_spsem_err02 1717 sp_tests += spsem_err02 1718 sp_screens += spsem_err02/spsem_err02.scn 1719 sp_docs += spsem_err02/spsem_err02.doc 1720 spsem_err02_SOURCES = spsem_err02/init.c spsem_err02/task2.c \ 1721 spsem_err02/system.h 1722 spsem_err02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spsem_err02) \ 1723 $(support_includes) 1724 endif 1725 1726 if TEST_spsignal_err01 1727 sp_tests += spsignal_err01 1728 sp_screens += spsignal_err01/spsignal_err01.scn 1729 sp_docs += spsignal_err01/spsignal_err01.doc 1730 spsignal_err01_SOURCES = spsignal_err01/init.c spsignal_err01/isr.c \ 1731 spsignal_err01/system.h 1732 spsignal_err01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spsignal_err01) \ 1733 $(support_includes) 1734 endif 1735 1736 if TEST_spsimplesched01 1737 sp_tests += spsimplesched01 1738 sp_screens += spsimplesched01/spsimplesched01.scn 1739 sp_docs += spsimplesched01/spsimplesched01.doc 1740 spsimplesched01_SOURCES = spsimplesched01/init.c 1741 spsimplesched01_CPPFLAGS = $(AM_CPPFLAGS) \ 1742 $(TEST_FLAGS_spsimplesched01) $(support_includes) 1743 endif 1744 1745 if TEST_spsimplesched02 1746 sp_tests += spsimplesched02 1747 sp_screens += spsimplesched02/spsimplesched02.scn 1748 sp_docs += spsimplesched02/spsimplesched02.doc 1749 spsimplesched02_SOURCES = spsimplesched02/init.c 1750 spsimplesched02_CPPFLAGS = $(AM_CPPFLAGS) \ 1751 $(TEST_FLAGS_spsimplesched02) $(support_includes) 1752 endif 1753 1754 if TEST_spsimplesched03 1755 sp_tests += spsimplesched03 1756 sp_screens += spsimplesched03/spsimplesched03.scn 1757 sp_docs += spsimplesched03/spsimplesched03.doc 1758 spsimplesched03_SOURCES = spsimplesched03/init.c 1759 spsimplesched03_CPPFLAGS = $(AM_CPPFLAGS) \ 1760 $(TEST_FLAGS_spsimplesched03) $(support_includes) 1761 endif 1762 1763 if TEST_spsize 1764 sp_tests += spsize 1765 sp_screens += spsize/spsize.scn 1766 sp_docs += spsize/spsize.doc 1767 spsize_SOURCES = spsize/init.c spsize/getint.c spsize/size.c \ 1768 spsize/system.h 1769 spsize_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spsize) \ 1770 $(support_includes) 1771 endif 1772 1773 if TEST_spstdthreads01 1774 sp_tests += spstdthreads01 1775 sp_screens += spstdthreads01/spstdthreads01.scn 1776 sp_docs += spstdthreads01/spstdthreads01.doc 1777 spstdthreads01_SOURCES = spstdthreads01/init.c 1778 spstdthreads01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spstdthreads01) \ 1779 $(support_includes) 1780 endif 1781 1782 if TEST_spstkalloc 1783 sp_tests += spstkalloc 1784 sp_screens += spstkalloc/spstkalloc.scn 1785 sp_docs += spstkalloc/spstkalloc.doc 1786 spstkalloc_SOURCES = spstkalloc/init.c 1787 spstkalloc_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spstkalloc) \ 1788 $(support_includes) 1789 endif 1790 1791 if TEST_spstkalloc02 1792 sp_tests += spstkalloc02 1793 sp_screens += spstkalloc02/spstkalloc02.scn 1794 sp_docs += spstkalloc02/spstkalloc02.doc 1795 spstkalloc02_SOURCES = spstkalloc02/init.c 1796 spstkalloc02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spstkalloc02) \ 1797 $(support_includes) 1798 endif 1799 1800 if TEST_spsysinit01 1801 sp_tests += spsysinit01 1802 sp_screens += spsysinit01/spsysinit01.scn 1803 sp_docs += spsysinit01/spsysinit01.doc 1804 spsysinit01_SOURCES = spsysinit01/init.c 1805 spsysinit01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spsysinit01) \ 1806 $(support_includes) 1807 endif 1808 1809 if TEST_spsyslock01 1810 sp_tests += spsyslock01 1811 sp_screens += spsyslock01/spsyslock01.scn 1812 sp_docs += spsyslock01/spsyslock01.doc 1813 spsyslock01_SOURCES = spsyslock01/init.c 1814 spsyslock01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spsyslock01) \ 1815 $(support_includes) 1816 endif 1817 1818 if TEST_sptask_err01 1819 sp_tests += sptask_err01 1820 sp_screens += sptask_err01/sptask_err01.scn 1821 sp_docs += sptask_err01/sptask_err01.doc 1822 sptask_err01_SOURCES = sptask_err01/init.c sptask_err01/task2.c \ 1823 sptask_err01/system.h 1824 sptask_err01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sptask_err01) \ 1825 $(support_includes) 1826 endif 1827 1828 if TEST_sptask_err02 1829 sp_tests += sptask_err02 1830 sp_screens += sptask_err02/sptask_err02.scn 1831 sp_docs += sptask_err02/sptask_err02.doc 1832 sptask_err02_SOURCES = sptask_err02/init.c sptask_err02/system.h 1833 sptask_err02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sptask_err02) \ 1834 $(support_includes) 1835 endif 1836 1837 if TEST_sptask_err03 1838 sp_tests += sptask_err03 1839 sp_screens += sptask_err03/sptask_err03.scn 1840 sp_docs += sptask_err03/sptask_err03.doc 1841 sptask_err03_SOURCES = sptask_err03/init.c sptask_err03/system.h 1842 sptask_err03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sptask_err03) \ 1843 $(support_includes) 1844 endif 1845 1846 if TEST_sptask_err04 1847 sp_tests += sptask_err04 1848 sp_screens += sptask_err04/sptask_err04.scn 1849 sp_docs += sptask_err04/sptask_err04.doc 1850 sptask_err04_SOURCES = sptask_err04/init.c sptask_err04/task1.c \ 1851 sptask_err04/system.h 1852 sptask_err04_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sptask_err04) \ 1853 $(support_includes) 1854 endif 1855 1856 if TEST_sptasknopreempt01 1857 sp_tests += sptasknopreempt01 1858 sp_screens += sptasknopreempt01/sptasknopreempt01.scn 1859 sp_docs += sptasknopreempt01/sptasknopreempt01.doc 1860 sptasknopreempt01_SOURCES = sptasknopreempt01/init.c 1861 sptasknopreempt01_CPPFLAGS = $(AM_CPPFLAGS) \ 1862 $(TEST_FLAGS_sptasknopreempt01) $(support_includes) 1863 endif 1864 1865 if TEST_spthread01 1866 sp_tests += spthread01 1867 sp_screens += spthread01/spthread01.scn 1868 sp_docs += spthread01/spthread01.doc 1869 spthread01_SOURCES = spthread01/init.c 1870 spthread01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spthread01) \ 1871 $(support_includes) 1872 endif 1873 1874 if TEST_spthreadlife01 1875 sp_tests += spthreadlife01 1876 sp_screens += spthreadlife01/spthreadlife01.scn 1877 sp_docs += spthreadlife01/spthreadlife01.doc 1878 spthreadlife01_SOURCES = spthreadlife01/init.c 1879 spthreadlife01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spthreadlife01) \ 1880 $(support_includes) 1881 endif 1882 1883 if TEST_spthreadq01 1884 sp_tests += spthreadq01 1885 sp_screens += spthreadq01/spthreadq01.scn 1886 sp_docs += spthreadq01/spthreadq01.doc 1887 spthreadq01_SOURCES = spthreadq01/init.c 1888 spthreadq01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spthreadq01) \ 1889 $(support_includes) 1890 endif 1891 1892 if TEST_sptimecounter01 1893 sp_tests += sptimecounter01 1894 sp_screens += sptimecounter01/sptimecounter01.scn 1895 sp_docs += sptimecounter01/sptimecounter01.doc 1896 sptimecounter01_SOURCES = sptimecounter01/init.c 1897 sptimecounter01_CPPFLAGS = $(AM_CPPFLAGS) \ 1898 $(TEST_FLAGS_sptimecounter01) $(support_includes) 1899 endif 1900 1901 if TEST_sptimecounter02 1902 sp_tests += sptimecounter02 1903 sp_screens += sptimecounter02/sptimecounter02.scn 1904 sp_docs += sptimecounter02/sptimecounter02.doc 1905 sptimecounter02_SOURCES = sptimecounter02/init.c ../support/src/spin.c 1906 sptimecounter02_CPPFLAGS = $(AM_CPPFLAGS) \ 1907 $(TEST_FLAGS_sptimecounter02) $(support_includes) 1908 endif 1909 1910 if TEST_sptimecounter03 1911 sp_tests += sptimecounter03 1912 sp_screens += sptimecounter03/sptimecounter03.scn 1913 sp_docs += sptimecounter03/sptimecounter03.doc 1914 sptimecounter03_SOURCES = sptimecounter03/init.c 1915 sptimecounter03_CPPFLAGS = $(AM_CPPFLAGS) \ 1916 $(TEST_FLAGS_sptimecounter03) $(support_includes) 1917 endif 1918 1919 if TEST_sptimecounter04 1920 sp_tests += sptimecounter04 1921 sp_screens += sptimecounter04/sptimecounter04.scn 1922 sp_docs += sptimecounter04/sptimecounter04.doc 1923 sptimecounter04_SOURCES = sptimecounter04/init.c 1924 sptimecounter04_CPPFLAGS = $(AM_CPPFLAGS) \ 1925 $(TEST_FLAGS_sptimecounter04) $(support_includes) 1926 endif 1927 1928 if TEST_sptimer_err01 1929 sp_tests += sptimer_err01 1930 sp_screens += sptimer_err01/sptimer_err01.scn 1931 sp_docs += sptimer_err01/sptimer_err01.doc 1932 sptimer_err01_SOURCES = sptimer_err01/init.c 1933 sptimer_err01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sptimer_err01) \ 1934 $(support_includes) 1935 endif 1936 1937 if TEST_sptimer_err02 1938 sp_tests += sptimer_err02 1939 sp_screens += sptimer_err02/sptimer_err02.scn 1940 sp_docs += sptimer_err02/sptimer_err02.doc 1941 sptimer_err02_SOURCES = sptimer_err02/init.c 1942 sptimer_err02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sptimer_err02) \ 1943 $(support_includes) 1944 endif 1945 1946 if TEST_sptimerserver01 1947 sp_tests += sptimerserver01 1948 sp_screens += sptimerserver01/sptimerserver01.scn 1949 sp_docs += sptimerserver01/sptimerserver01.doc 1950 sptimerserver01_SOURCES = sptimerserver01/init.c 1951 sptimerserver01_CPPFLAGS = $(AM_CPPFLAGS) \ 1952 $(TEST_FLAGS_sptimerserver01) $(support_includes) 1953 endif 1954 1955 if TEST_sptimespec01 1956 sp_tests += sptimespec01 1957 sp_screens += sptimespec01/sptimespec01.scn 1958 sp_docs += sptimespec01/sptimespec01.doc 1959 sptimespec01_SOURCES = sptimespec01/init.c 1960 sptimespec01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sptimespec01) \ 1961 $(support_includes) 1962 endif 1963 1964 if HAS_CPLUSPLUS 1965 if TEST_sptls01 1966 sp_tests += sptls01 1967 sp_screens += sptls01/sptls01.scn 1968 sp_docs += sptls01/sptls01.doc 1969 sptls01_SOURCES = sptls01/init.c 1970 sptls01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sptls01) \ 1971 $(support_includes) 1972 endif 1973 endif 1974 1975 if TEST_sptls02 1976 sp_tests += sptls02 1977 sp_screens += sptls02/sptls02.scn 1978 sp_docs += sptls02/sptls02.doc 1979 sptls02_SOURCES = sptls02/init.cc 1980 sptls02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sptls02) \ 1981 $(support_includes) 1982 endif 1983 1984 if TEST_sptls03 1985 sp_tests += sptls03 1986 sp_screens += sptls03/sptls03.scn 1987 sp_docs += sptls03/sptls03.doc 1988 sptls03_SOURCES = sptls03/init.c 1989 sptls03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sptls03) \ 1990 $(support_includes) 1991 endif 1992 1993 if TEST_sptls04 1994 sp_tests += sptls04 1995 sp_screens += sptls04/sptls04.scn 1996 sp_docs += sptls04/sptls04.doc 1997 sptls04_SOURCES = sptls04/init.c 1998 sptls04_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_sptls04) \ 1999 $(support_includes) 2000 endif 2001 2002 if TEST_spversion01 2003 sp_tests += spversion01 2004 sp_screens += spversion01/spversion01.scn 2005 sp_docs += spversion01/spversion01.doc 2006 spversion01_SOURCES = spversion01/init.c 2007 spversion01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spversion01) \ 2008 $(support_includes) 2009 endif 2010 2011 if TEST_spwatchdog 2012 sp_tests += spwatchdog 2013 sp_screens += spwatchdog/spwatchdog.scn 2014 sp_docs += spwatchdog/spwatchdog.doc 2015 spwatchdog_SOURCES = spwatchdog/init.c spwatchdog/task1.c \ 2016 spwatchdog/system.h spwatchdog/prtime.c spwatchdog/delay.c 2017 spwatchdog_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spwatchdog) \ 2018 $(support_includes) 2019 endif 2020 2021 if TEST_spwkspace 2022 sp_tests += spwkspace 2023 sp_screens += spwkspace/spwkspace.scn 2024 sp_docs += spwkspace/spwkspace.doc 2025 spwkspace_SOURCES = spwkspace/init.c 2026 spwkspace_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_spwkspace) \ 2027 $(support_includes) 2028 endif 2029 2030 if TEST_splinkersets01 2031 sp_libs += libsplinkersets01.a 2032 libsplinkersets01_a_SOURCES = splinkersets01/sets.c \ 2033 splinkersets01/items.c 2034 endif 2035 2036 rtems_tests_PROGRAMS = $(sp_tests) 2037 noinst_LIBRARIES = $(sp_libs) 2038 dist_rtems_tests_DATA = $(sp_screens) $(sp_docs) 2039 91 2040 include $(top_srcdir)/../automake/local.am -
testsuites/sptests/configure.ac
r8074fa0b rbc06753 35 35 # Some tests should not be built/run in SMP configurations 36 36 RTEMS_CHECK_CPUOPTS([RTEMS_SMP]) 37 AM_CONDITIONAL(NO_SMP,test "$rtems_cv_RTEMS_SMP" != "yes") 37 38 AM_CONDITIONAL(HAS_SMP,test "$rtems_cv_RTEMS_SMP" = "yes") 38 39 39 # Explicitly list all Makefiles here40 AC_CONFIG_FILES([Makefile 41 spthread01/Makefile 42 sptls04/Makefile 43 spconsole01/Makefile 44 spintrcritical24/Makefile 45 spfatal31/Makefile 46 spfatal30/Makefile 47 spmutex01/Makefile 48 spextensions01/Makefile 49 sptimerserver01/Makefile 50 spsysinit01/Makefile 51 splinkersets01/Makefile 52 spstdthreads01/Makefile 53 spsyslock01/Makefile 54 sptasknopreempt01/Makefile 55 spintrcritical23/Makefile 56 sptimecounter01/Makefile 57 sptimecounter02/Makefile 58 sptimecounter03/Makefile 59 sptimecounter04/Makefile 60 spatomic01/Makefile 61 spglobalcon01/Makefile 62 spglobalcon02/Makefile 63 spintrcritical22/Makefile 64 spsem03/Makefile 65 spmrsp01/Makefile 66 spscheduler01/Makefile 67 spfatal28/Makefile 68 spthreadlife01/Makefile 69 spprofiling01/Makefile 70 spcache01/Makefile 71 sptls03/Makefile 72 spcpucounter01/Makefile 73 sptls02/Makefile 74 sptls01/Makefile 75 spintrcritical20/Makefile 76 spintrcritical21/Makefile 77 spcontext01/Makefile 78 spfatal26/Makefile 79 spinternalerror02/Makefile 80 spinternalerror01/Makefile 81 speventsystem01/Makefile 82 speventtransient01/Makefile 83 spintrcritical18/Makefile 84 sp01/Makefile 85 sp02/Makefile 86 sp03/Makefile 87 sp04/Makefile 88 sp05/Makefile 89 sp06/Makefile 90 sp07/Makefile 91 sp08/Makefile 92 sp11/Makefile 93 sp12/Makefile 94 sp13/Makefile 95 sp14/Makefile 96 sp15/Makefile 97 sp16/Makefile 98 sp17/Makefile 99 sp18/Makefile 100 sp19/Makefile 101 sp20/Makefile 102 sp21/Makefile 103 sp22/Makefile 104 sp23/Makefile 105 sp24/Makefile 106 sp25/Makefile 107 sp26/Makefile 108 sp27/Makefile 109 sp27a/Makefile 110 sp29/Makefile 111 sp30/Makefile 112 sp31/Makefile 113 sp32/Makefile 114 sp33/Makefile 115 sp34/Makefile 116 sp35/Makefile 117 sp36/Makefile 118 sp37/Makefile 119 sp38/Makefile 120 sp40/Makefile 121 sp41/Makefile 122 sp42/Makefile 123 sp43/Makefile 124 sp44/Makefile 125 sp45/Makefile 126 sp46/Makefile 127 sp47/Makefile 128 sp48/Makefile 129 sp49/Makefile 130 sp50/Makefile 131 sp51/Makefile 132 sp52/Makefile 133 sp53/Makefile 134 sp54/Makefile 135 sp55/Makefile 136 sp56/Makefile 137 sp57/Makefile 138 sp58/Makefile 139 sp59/Makefile 140 sp60/Makefile 141 sp62/Makefile 142 sp63/Makefile 143 sp64/Makefile 144 sp65/Makefile 145 sp66/Makefile 146 sp67/Makefile 147 sp68/Makefile 148 sp69/Makefile 149 sp70/Makefile 150 sp71/Makefile 151 sp72/Makefile 152 sp73/Makefile 153 sp74/Makefile 154 sp75/Makefile 155 sp76/Makefile 156 sp77/Makefile 157 sprmsched02/Makefile 158 sp2038/Makefile 159 spassoc01/Makefile 160 spcbssched01/Makefile 161 spcbssched02/Makefile 162 spcbssched03/Makefile 163 spchain/Makefile 164 spclock_err01/Makefile 165 spclock_err02/Makefile 166 spcoverage/Makefile 167 spedfsched01/Makefile 168 spedfsched02/Makefile 169 spedfsched03/Makefile 170 spedfsched04/Makefile 171 sperror01/Makefile 172 sperror02/Makefile 173 sperror03/Makefile 174 spevent_err03/Makefile 175 spfatal01/Makefile 176 spfatal02/Makefile 177 spfatal03/Makefile 178 spfatal04/Makefile 179 spfatal05/Makefile 180 spfatal06/Makefile 181 spfatal07/Makefile 182 spfatal08/Makefile 183 spfatal09/Makefile 184 spfatal10/Makefile 185 spfatal11/Makefile 186 spfatal12/Makefile 187 spfatal13/Makefile 188 spfatal14/Makefile 189 spfatal15/Makefile 190 spfatal16/Makefile 191 spfatal24/Makefile 192 spfatal25/Makefile 193 spfatal27/Makefile 194 spfatal29/Makefile 195 spfifo01/Makefile 196 spfifo02/Makefile 197 spfifo03/Makefile 198 spfifo04/Makefile 199 spfifo05/Makefile 200 spfreechain01/Makefile 201 spintr_err01/Makefile 202 spintrcritical01/Makefile 203 spintrcritical02/Makefile 204 spintrcritical03/Makefile 205 spintrcritical04/Makefile 206 spintrcritical05/Makefile 207 spintrcritical06/Makefile 208 spintrcritical07/Makefile 209 spintrcritical08/Makefile 210 spintrcritical09/Makefile 211 spintrcritical10/Makefile 212 spintrcritical11/Makefile 213 spintrcritical12/Makefile 214 spintrcritical13/Makefile 215 spintrcritical14/Makefile 216 spintrcritical15/Makefile 217 spintrcritical16/Makefile 218 spheapprot/Makefile 219 spmkdir/Makefile 220 spmountmgr01/Makefile 221 spmsgq_err01/Makefile 222 spmsgq_err02/Makefile 223 spnsext01/Makefile 224 spobjgetnext/Makefile 225 sppagesize/Makefile 226 spport_err01/Makefile 227 spprintk/Makefile 228 spprivenv01/Makefile 229 spqreslib/Makefile 230 spratemon_err01/Makefile 231 sprbtree01/Makefile 232 spsem_err01/Makefile 233 spsem_err02/Makefile 234 spsem01/Makefile 235 spsem02/Makefile 236 spsignal_err01/Makefile 237 spsimplesched01/Makefile 238 spsimplesched02/Makefile 239 spsimplesched03/Makefile 240 spsize/Makefile 241 spstkalloc/Makefile 242 spstkalloc02/Makefile 243 spthreadq01/Makefile 244 sptimespec01/Makefile 245 spwatchdog/Makefile 246 spwkspace/Makefile 247 sptask_err01/Makefile 248 sptask_err02/Makefile 249 sptask_err03/Makefile 250 sptask_err04/Makefile 251 sptimer_err01/Makefile 252 sptimer_err02/Makefile 253 spcpuset01/Makefile 254 spregion_err01/Makefile 255 sppartition_err01/Makefile 256 sprmsched01/Makefile 257 spversion01/Makefile 258 ])40 # BSP Test configuration 41 RTEMS_TEST_CHECK([sp01]) 42 RTEMS_TEST_CHECK([sp02]) 43 RTEMS_TEST_CHECK([sp03]) 44 RTEMS_TEST_CHECK([sp04]) 45 RTEMS_TEST_CHECK([sp05]) 46 RTEMS_TEST_CHECK([sp06]) 47 RTEMS_TEST_CHECK([sp07]) 48 RTEMS_TEST_CHECK([sp08]) 49 RTEMS_TEST_CHECK([sp11]) 50 RTEMS_TEST_CHECK([sp12]) 51 RTEMS_TEST_CHECK([sp13]) 52 RTEMS_TEST_CHECK([sp14]) 53 RTEMS_TEST_CHECK([sp15]) 54 RTEMS_TEST_CHECK([sp16]) 55 RTEMS_TEST_CHECK([sp17]) 56 RTEMS_TEST_CHECK([sp18]) 57 RTEMS_TEST_CHECK([sp19]) 58 RTEMS_TEST_CHECK([sp20]) 59 RTEMS_TEST_CHECK([sp2038]) 60 RTEMS_TEST_CHECK([sp21]) 61 RTEMS_TEST_CHECK([sp22]) 62 RTEMS_TEST_CHECK([sp23]) 63 RTEMS_TEST_CHECK([sp24]) 64 RTEMS_TEST_CHECK([sp25]) 65 RTEMS_TEST_CHECK([sp26]) 66 RTEMS_TEST_CHECK([sp27]) 67 RTEMS_TEST_CHECK([sp27a]) 68 RTEMS_TEST_CHECK([sp29]) 69 RTEMS_TEST_CHECK([sp30]) 70 RTEMS_TEST_CHECK([sp31]) 71 RTEMS_TEST_CHECK([sp32]) 72 RTEMS_TEST_CHECK([sp33]) 73 RTEMS_TEST_CHECK([sp34]) 74 RTEMS_TEST_CHECK([sp35]) 75 RTEMS_TEST_CHECK([sp36]) 76 RTEMS_TEST_CHECK([sp37]) 77 RTEMS_TEST_CHECK([sp38]) 78 RTEMS_TEST_CHECK([sp40]) 79 RTEMS_TEST_CHECK([sp41]) 80 RTEMS_TEST_CHECK([sp42]) 81 RTEMS_TEST_CHECK([sp43]) 82 RTEMS_TEST_CHECK([sp44]) 83 RTEMS_TEST_CHECK([sp45]) 84 RTEMS_TEST_CHECK([sp46]) 85 RTEMS_TEST_CHECK([sp47]) 86 RTEMS_TEST_CHECK([sp48]) 87 RTEMS_TEST_CHECK([sp49]) 88 RTEMS_TEST_CHECK([sp50]) 89 RTEMS_TEST_CHECK([sp51]) 90 RTEMS_TEST_CHECK([sp52]) 91 RTEMS_TEST_CHECK([sp53]) 92 RTEMS_TEST_CHECK([sp54]) 93 RTEMS_TEST_CHECK([sp55]) 94 RTEMS_TEST_CHECK([sp56]) 95 RTEMS_TEST_CHECK([sp57]) 96 RTEMS_TEST_CHECK([sp58]) 97 RTEMS_TEST_CHECK([sp59]) 98 RTEMS_TEST_CHECK([sp60]) 99 RTEMS_TEST_CHECK([sp62]) 100 RTEMS_TEST_CHECK([sp63]) 101 RTEMS_TEST_CHECK([sp64]) 102 RTEMS_TEST_CHECK([sp65]) 103 RTEMS_TEST_CHECK([sp66]) 104 RTEMS_TEST_CHECK([sp67]) 105 RTEMS_TEST_CHECK([sp68]) 106 RTEMS_TEST_CHECK([sp69]) 107 RTEMS_TEST_CHECK([sp70]) 108 RTEMS_TEST_CHECK([sp71]) 109 RTEMS_TEST_CHECK([sp72]) 110 RTEMS_TEST_CHECK([sp73]) 111 RTEMS_TEST_CHECK([sp74]) 112 RTEMS_TEST_CHECK([sp75]) 113 RTEMS_TEST_CHECK([sp76]) 114 RTEMS_TEST_CHECK([sp77]) 115 RTEMS_TEST_CHECK([spassoc01]) 116 RTEMS_TEST_CHECK([spatomic01]) 117 RTEMS_TEST_CHECK([spcache01]) 118 RTEMS_TEST_CHECK([spcbssched01]) 119 RTEMS_TEST_CHECK([spcbssched02]) 120 RTEMS_TEST_CHECK([spcbssched03]) 121 RTEMS_TEST_CHECK([spchain]) 122 RTEMS_TEST_CHECK([spclock_err01]) 123 RTEMS_TEST_CHECK([spclock_err02]) 124 RTEMS_TEST_CHECK([spconsole01]) 125 RTEMS_TEST_CHECK([spcontext01]) 126 RTEMS_TEST_CHECK([spcoverage]) 127 RTEMS_TEST_CHECK([spcpucounter01]) 128 RTEMS_TEST_CHECK([spcpuset01]) 129 RTEMS_TEST_CHECK([spedfsched01]) 130 RTEMS_TEST_CHECK([spedfsched02]) 131 RTEMS_TEST_CHECK([spedfsched03]) 132 RTEMS_TEST_CHECK([spedfsched04]) 133 RTEMS_TEST_CHECK([sperror01]) 134 RTEMS_TEST_CHECK([sperror02]) 135 RTEMS_TEST_CHECK([sperror03]) 136 RTEMS_TEST_CHECK([spevent_err03]) 137 RTEMS_TEST_CHECK([speventsystem01]) 138 RTEMS_TEST_CHECK([speventtransient01]) 139 RTEMS_TEST_CHECK([spextensions01]) 140 RTEMS_TEST_CHECK([spfatal01]) 141 RTEMS_TEST_CHECK([spfatal02]) 142 RTEMS_TEST_CHECK([spfatal03]) 143 RTEMS_TEST_CHECK([spfatal04]) 144 RTEMS_TEST_CHECK([spfatal05]) 145 RTEMS_TEST_CHECK([spfatal06]) 146 RTEMS_TEST_CHECK([spfatal07]) 147 RTEMS_TEST_CHECK([spfatal08]) 148 RTEMS_TEST_CHECK([spfatal09]) 149 RTEMS_TEST_CHECK([spfatal10]) 150 RTEMS_TEST_CHECK([spfatal11]) 151 RTEMS_TEST_CHECK([spfatal12]) 152 RTEMS_TEST_CHECK([spfatal13]) 153 RTEMS_TEST_CHECK([spfatal14]) 154 RTEMS_TEST_CHECK([spfatal15]) 155 RTEMS_TEST_CHECK([spfatal16]) 156 RTEMS_TEST_CHECK([spfatal24]) 157 RTEMS_TEST_CHECK([spfatal25]) 158 RTEMS_TEST_CHECK([spfatal26]) 159 RTEMS_TEST_CHECK([spfatal27]) 160 RTEMS_TEST_CHECK([spfatal28]) 161 RTEMS_TEST_CHECK([spfatal29]) 162 RTEMS_TEST_CHECK([spfatal30]) 163 RTEMS_TEST_CHECK([spfatal31]) 164 RTEMS_TEST_CHECK([spfifo01]) 165 RTEMS_TEST_CHECK([spfifo02]) 166 RTEMS_TEST_CHECK([spfifo03]) 167 RTEMS_TEST_CHECK([spfifo04]) 168 RTEMS_TEST_CHECK([spfifo05]) 169 RTEMS_TEST_CHECK([spfreechain01]) 170 RTEMS_TEST_CHECK([spglobalcon01]) 171 RTEMS_TEST_CHECK([spglobalcon02]) 172 RTEMS_TEST_CHECK([spheapprot]) 173 RTEMS_TEST_CHECK([spinternalerror01]) 174 RTEMS_TEST_CHECK([spinternalerror02]) 175 RTEMS_TEST_CHECK([spintr_err01]) 176 RTEMS_TEST_CHECK([spintrcritical01]) 177 RTEMS_TEST_CHECK([spintrcritical02]) 178 RTEMS_TEST_CHECK([spintrcritical03]) 179 RTEMS_TEST_CHECK([spintrcritical04]) 180 RTEMS_TEST_CHECK([spintrcritical05]) 181 RTEMS_TEST_CHECK([spintrcritical06]) 182 RTEMS_TEST_CHECK([spintrcritical07]) 183 RTEMS_TEST_CHECK([spintrcritical08]) 184 RTEMS_TEST_CHECK([spintrcritical09]) 185 RTEMS_TEST_CHECK([spintrcritical10]) 186 RTEMS_TEST_CHECK([spintrcritical11]) 187 RTEMS_TEST_CHECK([spintrcritical12]) 188 RTEMS_TEST_CHECK([spintrcritical13]) 189 RTEMS_TEST_CHECK([spintrcritical14]) 190 RTEMS_TEST_CHECK([spintrcritical15]) 191 RTEMS_TEST_CHECK([spintrcritical16]) 192 RTEMS_TEST_CHECK([spintrcritical18]) 193 RTEMS_TEST_CHECK([spintrcritical20]) 194 RTEMS_TEST_CHECK([spintrcritical21]) 195 RTEMS_TEST_CHECK([spintrcritical22]) 196 RTEMS_TEST_CHECK([spintrcritical23]) 197 RTEMS_TEST_CHECK([spintrcritical24]) 198 RTEMS_TEST_CHECK([splinkersets01]) 199 RTEMS_TEST_CHECK([spmkdir]) 200 RTEMS_TEST_CHECK([spmountmgr01]) 201 RTEMS_TEST_CHECK([spmrsp01]) 202 RTEMS_TEST_CHECK([spmsgq_err01]) 203 RTEMS_TEST_CHECK([spmsgq_err02]) 204 RTEMS_TEST_CHECK([spmutex01]) 205 RTEMS_TEST_CHECK([spnsext01]) 206 RTEMS_TEST_CHECK([spobjgetnext]) 207 RTEMS_TEST_CHECK([sppagesize]) 208 RTEMS_TEST_CHECK([sppartition_err01]) 209 RTEMS_TEST_CHECK([spport_err01]) 210 RTEMS_TEST_CHECK([spprintk]) 211 RTEMS_TEST_CHECK([spprivenv01]) 212 RTEMS_TEST_CHECK([spprofiling01]) 213 RTEMS_TEST_CHECK([spqreslib]) 214 RTEMS_TEST_CHECK([spratemon_err01]) 215 RTEMS_TEST_CHECK([sprbtree01]) 216 RTEMS_TEST_CHECK([spregion_err01]) 217 RTEMS_TEST_CHECK([sprmsched01]) 218 RTEMS_TEST_CHECK([sprmsched02]) 219 RTEMS_TEST_CHECK([spscheduler01]) 220 RTEMS_TEST_CHECK([spsem01]) 221 RTEMS_TEST_CHECK([spsem02]) 222 RTEMS_TEST_CHECK([spsem03]) 223 RTEMS_TEST_CHECK([spsem_err01]) 224 RTEMS_TEST_CHECK([spsem_err02]) 225 RTEMS_TEST_CHECK([spsignal_err01]) 226 RTEMS_TEST_CHECK([spsimplesched01]) 227 RTEMS_TEST_CHECK([spsimplesched02]) 228 RTEMS_TEST_CHECK([spsimplesched03]) 229 RTEMS_TEST_CHECK([spsize]) 230 RTEMS_TEST_CHECK([spstdthreads01]) 231 RTEMS_TEST_CHECK([spstkalloc]) 232 RTEMS_TEST_CHECK([spstkalloc02]) 233 RTEMS_TEST_CHECK([spsysinit01]) 234 RTEMS_TEST_CHECK([spsyslock01]) 235 RTEMS_TEST_CHECK([sptask_err01]) 236 RTEMS_TEST_CHECK([sptask_err02]) 237 RTEMS_TEST_CHECK([sptask_err03]) 238 RTEMS_TEST_CHECK([sptask_err04]) 239 RTEMS_TEST_CHECK([sptasknopreempt01]) 240 RTEMS_TEST_CHECK([spthread01]) 241 RTEMS_TEST_CHECK([spthreadlife01]) 242 RTEMS_TEST_CHECK([spthreadq01]) 243 RTEMS_TEST_CHECK([sptimecounter01]) 244 RTEMS_TEST_CHECK([sptimecounter02]) 245 RTEMS_TEST_CHECK([sptimecounter03]) 246 RTEMS_TEST_CHECK([sptimecounter04]) 247 RTEMS_TEST_CHECK([sptimer_err01]) 248 RTEMS_TEST_CHECK([sptimer_err02]) 249 RTEMS_TEST_CHECK([sptimerserver01]) 250 RTEMS_TEST_CHECK([sptimespec01]) 251 RTEMS_TEST_CHECK([sptls01]) 252 RTEMS_TEST_CHECK([sptls02]) 253 RTEMS_TEST_CHECK([sptls03]) 254 RTEMS_TEST_CHECK([sptls04]) 255 RTEMS_TEST_CHECK([spversion01]) 256 RTEMS_TEST_CHECK([spwatchdog]) 257 RTEMS_TEST_CHECK([spwkspace]) 258 259 AC_CONFIG_FILES([Makefile]) 259 260 AC_OUTPUT
Note: See TracChangeset
for help on using the changeset viewer.