Changeset 2a99a6a in rtems
- Timestamp:
- 04/09/18 03:42:02 (5 years ago)
- Branches:
- 5, master
- Children:
- dfc57eb
- Parents:
- 3206879f
- git-author:
- Chris Johns <chrisj@…> (04/09/18 03:42:02)
- git-committer:
- Chris Johns <chrisj@…> (04/09/18 22:24:54)
- Location:
- testsuites/psxtests
- Files:
-
- 103 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/psxtests/Makefile.am
r3206879f r2a99a6a 1 # 2 # POSIX Teststuite 3 # 4 1 5 ACLOCAL_AMFLAGS = -I ../aclocal 2 6 3 ## Some of the tests need other POSIX features to work while some do not. 4 5 _SUBDIRS = 6 if HAS_POSIX 7 _SUBDIRS += psx01 8 _SUBDIRS += psx02 9 _SUBDIRS += psx03 10 _SUBDIRS += psx04 11 _SUBDIRS += psx05 12 _SUBDIRS += psx06 13 _SUBDIRS += psx07 14 _SUBDIRS += psx08 15 _SUBDIRS += psx09 16 _SUBDIRS += psx10 17 _SUBDIRS += psx11 18 _SUBDIRS += psx12 19 _SUBDIRS += psx14 20 _SUBDIRS += psx15 21 _SUBDIRS += psx16 22 _SUBDIRS += psxaio01 23 _SUBDIRS += psxaio02 24 _SUBDIRS += psxaio03 25 _SUBDIRS += psxalarm01 26 _SUBDIRS += psxautoinit01 27 _SUBDIRS += psxautoinit02 28 _SUBDIRS += psxbarrier01 29 _SUBDIRS += psxcancel 30 _SUBDIRS += psxcancel01 31 _SUBDIRS += psxclassic01 32 _SUBDIRS += psxcleanup 33 _SUBDIRS += psxcleanup01 34 _SUBDIRS += psxcleanup02 35 endif 36 _SUBDIRS += psxclock 37 if HAS_POSIX 38 _SUBDIRS += psxclock01 39 _SUBDIRS += psxclockrealtime01 40 _SUBDIRS += psxconcurrency01 41 _SUBDIRS += psxcond01 42 _SUBDIRS += psxcond02 43 _SUBDIRS += psxconfig01 44 endif 45 _SUBDIRS += psxdevctl01 46 if HAS_POSIX 47 _SUBDIRS += psxeintr_join 48 _SUBDIRS += psxenosys 49 _SUBDIRS += psxfatal01 50 _SUBDIRS += psxfatal02 51 _SUBDIRS += psxgetattrnp01 52 endif 7 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg 8 include $(top_srcdir)/../automake/compile.am 9 10 psx_tests = 11 psx_screens = 12 psx_docs = 13 psx_lib = 14 15 support_includes = -I$(top_srcdir)/../support/include 16 17 if HAS_POSIX 18 if TEST_psx01 19 psx_tests += psx01 20 psx01_SOURCES = psx01/init.c psx01/task.c psx01/system.h \ 21 include/pmacros.h 22 psx01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx01) \ 23 $(support_includes) -I$(top_srcdir)/include 24 endif 25 endif 26 27 if HAS_POSIX 28 if TEST_psx02 29 psx_tests += psx02 30 psx_screens += psx02/psx02.scn 31 psx02_SOURCES = psx02/init.c psx02/task.c psx02/system.h \ 32 include/pmacros.h 33 psx02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx02) \ 34 $(support_includes) -I$(top_srcdir)/include 35 endif 36 endif 37 38 if HAS_POSIX 39 if TEST_psx03 40 psx_tests += psx03 41 psx_screens += psx03/psx03.scn 42 psx03_SOURCES = psx03/init.c psx03/task.c psx03/system.h \ 43 include/pmacros.h 44 psx03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx03) \ 45 $(support_includes) -I$(top_srcdir)/include 46 endif 47 endif 48 49 if HAS_POSIX 50 if TEST_psx04 51 psx_tests += psx04 52 psx_screens += psx04/psx04.scn 53 psx04_SOURCES = psx04/init.c psx04/task1.c psx04/task2.c psx04/task3.c \ 54 psx04/system.h include/pmacros.h 55 psx04_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx04) \ 56 $(support_includes) -I$(top_srcdir)/include 57 endif 58 endif 59 60 if HAS_POSIX 61 if TEST_psx05 62 psx_tests += psx05 63 psx_screens += psx05/psx05.scn 64 psx05_SOURCES = psx05/init.c psx05/task.c psx05/task2.c psx05/task3.c \ 65 psx05/system.h include/pmacros.h 66 psx05_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx05) \ 67 $(support_includes) -I$(top_srcdir)/include 68 endif 69 endif 70 71 if HAS_POSIX 72 if TEST_psx06 73 psx_tests += psx06 74 psx_screens += psx06/psx06.scn 75 psx06_SOURCES = psx06/init.c psx06/task.c psx06/task2.c psx06/system.h \ 76 include/pmacros.h 77 psx06_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx06) \ 78 $(support_includes) -I$(top_srcdir)/include 79 endif 80 endif 81 82 if HAS_POSIX 83 if TEST_psx07 84 psx_tests += psx07 85 psx_screens += psx07/psx07.scn 86 psx_docs += psx07/psx07.doc 87 psx07_SOURCES = psx07/init.c psx07/task.c psx07/system.h \ 88 include/pmacros.h 89 psx07_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx07) \ 90 $(support_includes) -I$(top_srcdir)/include 91 endif 92 endif 93 94 if HAS_POSIX 95 if TEST_psx08 96 psx_tests += psx08 97 psx_screens += psx08/psx08.scn 98 psx08_SOURCES = psx08/init.c psx08/task1.c psx08/task2.c psx08/task3.c \ 99 psx08/system.h include/pmacros.h 100 psx08_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx08) \ 101 $(support_includes) -I$(top_srcdir)/include 102 endif 103 endif 104 105 if HAS_POSIX 106 if TEST_psx09 107 psx_tests += psx09 108 psx_screens += psx09/psx09.scn 109 psx09_SOURCES = psx09/init.c psx09/system.h include/pmacros.h 110 psx09_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx09) \ 111 $(support_includes) -I$(top_srcdir)/include 112 endif 113 endif 114 115 if HAS_POSIX 116 if TEST_psx10 117 psx_tests += psx10 118 psx_screens += psx10/psx10.scn 119 psx10_SOURCES = psx10/init.c psx10/task.c psx10/task2.c psx10/task3.c \ 120 psx10/system.h include/pmacros.h 121 psx10_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx10) \ 122 $(support_includes) -I$(top_srcdir)/include 123 endif 124 endif 125 126 if HAS_POSIX 127 if TEST_psx11 128 psx_tests += psx11 129 psx_screens += psx11/psx11.scn 130 psx11_SOURCES = psx11/init.c psx11/task.c psx11/system.h \ 131 include/pmacros.h 132 psx11_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx11) \ 133 $(support_includes) -I$(top_srcdir)/include 134 endif 135 endif 136 137 if HAS_POSIX 138 if TEST_psx12 139 psx_tests += psx12 140 psx_screens += psx12/psx12.scn 141 psx12_SOURCES = psx12/init.c include/pmacros.h 142 psx12_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx12) \ 143 $(support_includes) -I$(top_srcdir)/include 144 endif 145 endif 146 147 if TEST_psx13 148 psx_tests += psx13 149 psx_screens += psx13/psx13.scn 150 psx13_SOURCES = psx13/main.c psx13/test.c include/pmacros.h 151 psx13_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx13) \ 152 $(support_includes) -I$(top_srcdir)/include 153 endif 154 155 if HAS_POSIX 156 if TEST_psx14 157 psx_tests += psx14 158 psx_screens += psx14/psx14.scn 159 psx14_SOURCES = psx14/init.c psx14/system.h include/pmacros.h 160 psx14_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx14) \ 161 $(support_includes) -I$(top_srcdir)/include 162 endif 163 endif 164 165 if HAS_POSIX 166 if TEST_psx15 167 psx_tests += psx15 168 psx_screens += psx15/psx15.scn 169 psx15_SOURCES = psx15/init.c include/pmacros.h 170 psx15_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx15) \ 171 $(support_includes) -I$(top_srcdir)/include 172 endif 173 endif 174 175 if HAS_POSIX 176 if TEST_psx16 177 psx_tests += psx16 178 psx_screens += psx16/psx16.scn 179 psx16_SOURCES = psx16/init.c include/pmacros.h 180 psx16_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psx16) \ 181 $(support_includes) -I$(top_srcdir)/include 182 endif 183 endif 184 185 if HAS_POSIX 186 if TEST_psxaio01 187 psx_tests += psxaio01 188 psx_screens += psxaio01/psxaio01.scn 189 psxaio01_SOURCES = psxaio01/init.c psxaio01/system.h include/pmacros.h 190 psxaio01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxaio01) \ 191 $(support_includes) -I$(top_srcdir)/include 192 endif 193 endif 194 195 if HAS_POSIX 196 if TEST_psxaio02 197 psx_tests += psxaio02 198 psx_screens += psxaio02/psxaio02.scn 199 psxaio02_SOURCES = psxaio02/init.c psxaio02/system.h include/pmacros.h 200 psxaio02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxaio02) \ 201 $(support_includes) -I$(top_srcdir)/include 202 endif 203 endif 204 205 if HAS_POSIX 206 if TEST_psxaio03 207 psx_tests += psxaio03 208 psx_screens += psxaio03/psxaio03.scn 209 psxaio03_SOURCES = psxaio03/init.c psxaio03/system.h include/pmacros.h 210 psxaio03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxaio03) \ 211 $(support_includes) -I$(top_srcdir)/include 212 endif 213 endif 214 215 if HAS_POSIX 216 if TEST_psxalarm01 217 psx_tests += psxalarm01 218 psx_screens += psxalarm01/psxalarm01.scn 219 psx_docs += psxalarm01/psxalarm01.doc 220 psxalarm01_SOURCES = psxalarm01/init.c include/pmacros.h 221 psxalarm01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxalarm01) \ 222 $(support_includes) -I$(top_srcdir)/include 223 endif 224 endif 225 226 if HAS_POSIX 227 if TEST_psxautoinit01 228 psx_tests += psxautoinit01 229 psx_screens += psxautoinit01/psxautoinit01.scn 230 psxautoinit01_SOURCES = psxautoinit01/init.c include/pmacros.h 231 psxautoinit01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxautoinit01) \ 232 $(support_includes) -I$(top_srcdir)/include 233 endif 234 endif 235 236 if HAS_POSIX 237 if TEST_psxautoinit02 238 psx_tests += psxautoinit02 239 psx_screens += psxautoinit02/psxautoinit02.scn 240 psx_docs += psxautoinit02/psxautoinit02.doc 241 psxautoinit02_SOURCES = psxautoinit02/init.c include/pmacros.h 242 psxautoinit02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxautoinit02) \ 243 $(support_includes) -I$(top_srcdir)/include 244 endif 245 endif 246 247 if HAS_POSIX 248 if TEST_psxbarrier01 249 psx_tests += psxbarrier01 250 psx_screens += psxbarrier01/psxbarrier01.scn 251 psxbarrier01_SOURCES = psxbarrier01/main.c psxbarrier01/test.c \ 252 include/pmacros.h 253 psxbarrier01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxbarrier01) \ 254 $(support_includes) -I$(top_srcdir)/include 255 endif 256 endif 257 258 if HAS_POSIX 259 if TEST_psxcancel 260 psx_tests += psxcancel 261 psx_screens += psxcancel/psxcancel.scn 262 psx_docs += psxcancel/psxcancel.doc 263 psxcancel_SOURCES = psxcancel/init.c include/pmacros.h 264 psxcancel_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxcancel) \ 265 $(support_includes) -I$(top_srcdir)/include 266 endif 267 endif 268 269 if HAS_POSIX 270 if TEST_psxcancel01 271 psx_tests += psxcancel01 272 psx_screens += psxcancel01/psxcancel01.scn 273 psx_docs += psxcancel01/psxcancel01.doc 274 psxcancel01_SOURCES = psxcancel01/init.c include/pmacros.h 275 psxcancel01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxcancel01) \ 276 $(support_includes) -I$(top_srcdir)/include 277 endif 278 endif 279 280 if TEST_psxchroot01 281 psx_tests += psxchroot01 282 psx_screens += psxchroot01/psxchroot01.scn 283 psxchroot01_SOURCES = psxchroot01/main.c psxchroot01/test.c \ 284 include/pmacros.h 285 psxchroot01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxchroot01) \ 286 $(support_includes) -I$(top_srcdir)/include 287 endif 288 289 if HAS_POSIX 290 if TEST_psxclassic01 291 psx_tests += psxclassic01 292 psx_screens += psxclassic01/psxclassic01.scn 293 psx_docs += psxclassic01/psxclassic01.doc 294 psxclassic01_SOURCES = psxclassic01/init.c include/pmacros.h 295 psxclassic01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxclassic01) \ 296 $(support_includes) -I$(top_srcdir)/include 297 endif 298 endif 299 300 if HAS_POSIX 301 if TEST_psxcleanup 302 psx_tests += psxcleanup 303 psx_screens += psxcleanup/psxcleanup.scn 304 psxcleanup_SOURCES = psxcleanup/psxcleanup.c psxcleanup/system.h \ 305 include/pmacros.h 306 psxcleanup_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxcleanup) \ 307 $(support_includes) -I$(top_srcdir)/include 308 endif 309 endif 310 311 if HAS_POSIX 312 if TEST_psxcleanup01 313 psx_tests += psxcleanup01 314 psx_screens += psxcleanup01/psxcleanup01.scn 315 psx_docs += psxcleanup01/psxcleanup01.doc 316 psxcleanup01_SOURCES = psxcleanup01/init.c include/pmacros.h 317 psxcleanup01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxcleanup01) \ 318 $(support_includes) -I$(top_srcdir)/include 319 endif 320 endif 321 322 if HAS_POSIX 323 if TEST_psxcleanup02 324 psx_tests += psxcleanup02 325 psx_screens += psxcleanup02/psxcleanup02.scn 326 psx_docs += psxcleanup02/psxcleanup02.doc 327 psxcleanup02_SOURCES = psxcleanup02/init.c psxcleanup02/main.c 328 psxcleanup02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxcleanup02) \ 329 $(support_includes) 330 endif 331 endif 332 333 if TEST_psxclock 334 psx_tests += psxclock 335 psx_screens += psxclock/psxclock.scn 336 psx_docs += psxclock/psxclock.doc 337 psxclock_SOURCES = psxclock/init.c include/pmacros.h 338 psxclock_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxclock) \ 339 $(support_includes) -I$(top_srcdir)/include 340 endif 341 342 if HAS_POSIX 343 if TEST_psxclock01 344 psx_tests += psxclock01 345 psx_screens += psxclock01/psxclock01.scn 346 psx_docs += psxclock01/psxclock01.doc 347 psxclock01_SOURCES = psxclock01/init.c 348 psxclock01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxclock01) \ 349 $(support_includes) -I$(top_srcdir)/include 350 endif 351 endif 352 353 if HAS_POSIX 354 if TEST_psxclockrealtime01 355 psx_tests += psxclockrealtime01 356 psx_screens += psxclockrealtime01/psxclockrealtime01.scn 357 psx_docs += psxclockrealtime01/psxclockrealtime01.doc 358 psxclockrealtime01_SOURCES = psxclockrealtime01/init.c 359 psxclockrealtime01_CPPFLAGS = $(AM_CPPFLAGS) \ 360 $(TEST_FLAGS_psxclockrealtime01) $(support_includes) 361 endif 362 endif 363 364 if HAS_POSIX 365 if TEST_psxconcurrency01 366 psx_tests += psxconcurrency01 367 psx_screens += psxconcurrency01/psxconcurrency01.scn 368 psx_docs += psxconcurrency01/psxconcurrency01.doc 369 psxconcurrency01_SOURCES = psxconcurrency01/init.c include/pmacros.h 370 psxconcurrency01_CPPFLAGS = $(AM_CPPFLAGS) \ 371 $(TEST_FLAGS_psxconcurrency01) $(support_includes) \ 372 -I$(top_srcdir)/include 373 endif 374 endif 375 376 if HAS_POSIX 377 if TEST_psxcond01 378 psx_tests += psxcond01 379 psx_screens += psxcond01/psxcond01.scn 380 psx_docs += psxcond01/psxcond01.doc 381 psxcond01_SOURCES = psxcond01/init.c include/pmacros.h 382 psxcond01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxcond01) \ 383 $(support_includes) -I$(top_srcdir)/include 384 endif 385 endif 386 387 if HAS_POSIX 388 if TEST_psxcond02 389 psx_tests += psxcond02 390 psx_screens += psxcond02/psxcond02.scn 391 psx_docs += psxcond02/psxcond02.doc 392 psxcond02_SOURCES = psxcond02/init.c include/pmacros.h 393 psxcond02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxcond02) \ 394 $(support_includes) -I$(top_srcdir)/include 395 endif 396 endif 397 398 if HAS_POSIX 399 if TEST_psxconfig01 400 psx_tests += psxconfig01 401 psx_screens += psxconfig01/psxconfig01.scn 402 psx_docs += psxconfig01/psxconfig01.doc 403 psxconfig01_SOURCES = psxconfig01/init.c include/pmacros.h 404 psxconfig01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxconfig01) \ 405 $(support_includes) -I$(top_srcdir)/include 406 endif 407 endif 408 409 if TEST_psxdevctl01 410 psx_tests += psxdevctl01 411 psx_screens += psxdevctl01/psxdevctl01.scn 412 psxdevctl01_SOURCES = psxdevctl01/main.c psxdevctl01/test.c \ 413 include/pmacros.h 414 psxdevctl01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxdevctl01) \ 415 $(support_includes) -I$(top_srcdir)/include 416 endif 417 418 if HAS_POSIX 419 if TEST_psxeintr_join 420 psx_tests += psxeintr_join 421 psx_screens += psxeintr_join/psxeintr_join.scn 422 psx_docs += psxeintr_join/psxeintr_join.doc 423 psxeintr_join_SOURCES = psxeintr_join/init.c 424 psxeintr_join_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxeintr_join) \ 425 $(support_includes) -I$(top_srcdir)/include 426 endif 427 endif 428 429 if HAS_POSIX 430 if TEST_psxenosys 431 psx_tests += psxenosys 432 psx_screens += psxenosys/psxenosys.scn 433 psx_docs += psxenosys/psxenosys.doc 434 psxenosys_SOURCES = psxenosys/init.c psxenosys/system.h \ 435 include/pmacros.h 436 psxenosys_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxenosys) \ 437 $(support_includes) -I$(top_srcdir)/include 438 endif 439 endif 440 441 if HAS_POSIX 442 if TEST_psxfatal01 443 psx_tests += psxfatal01 444 psx_screens += psxfatal01/psxfatal01.scn 445 psxfatal01_SOURCES = psxfatal_support/init.c psxfatal_support/system.h \ 446 psxfatal01/testcase.h 447 psxfatal01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxfatal01) \ 448 $(support_includes) -I$(top_srcdir)/psxfatal01 449 endif 450 endif 451 452 if HAS_POSIX 453 if TEST_psxfatal02 454 psx_tests += psxfatal02 455 psx_screens += psxfatal02/psxfatal02.scn 456 psxfatal02_SOURCES = psxfatal_support/init.c psxfatal_support/system.h \ 457 psxfatal02/testcase.h 458 psxfatal02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxfatal02) \ 459 $(support_includes) -I$(top_srcdir)/psxfatal02 460 endif 461 endif 462 463 if TEST_psxfchx01 464 psx_tests += psxfchx01 465 psx_screens += psxfchx01/psxfchx01.scn 466 psx_docs += psxfchx01/psxfchx01.doc 467 psxfchx01_SOURCES = psxfchx01/init.c include/pmacros.h 468 psxfchx01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxfchx01) \ 469 $(support_includes) -I$(top_srcdir)/include 470 endif 471 472 if TEST_psxfile01 473 psx_tests += psxfile01 474 psx_screens += psxfile01/psxfile01.scn 475 psxfile01_SOURCES = psxfile01/main.c psxfile01/test.c \ 476 psxfile01/test_cat.c psxfile01/test_extend.c psxfile01/test_write.c \ 477 include/pmacros.h 478 psxfile01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxfile01) \ 479 $(support_includes) -I$(top_srcdir)/include 480 endif 481 482 if TEST_psxfile02 483 psx_tests += psxfile02 484 psx_screens += psxfile02/psxfile02.scn 485 psx_docs += psxfile02/psxfile02.doc 486 psxfile02_SOURCES = psxfile02/init.c ../support/src/spin.c 487 psxfile02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxfile02) \ 488 $(support_includes) 489 endif 490 491 if TEST_psxfilelock01 492 psx_tests += psxfilelock01 493 psx_screens += psxfilelock01/psxfilelock01.scn 494 psx_docs += psxfilelock01/psxfilelock01.doc 495 psxfilelock01_SOURCES = psxfilelock01/init.c 496 psxfilelock01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxfilelock01) \ 497 $(support_includes) 498 endif 499 500 if HAS_POSIX 501 if TEST_psxgetattrnp01 502 psx_tests += psxgetattrnp01 503 psx_screens += psxgetattrnp01/psxgetattrnp01.scn 504 psx_docs += psxgetattrnp01/psxgetattrnp01.doc 505 psxgetattrnp01_SOURCES = psxgetattrnp01/init.c 506 psxgetattrnp01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxgetattrnp01) \ 507 $(support_includes) -I$(top_srcdir)/include 508 endif 509 endif 510 511 if TEST_psxgetrusage01 512 psx_tests += psxgetrusage01 513 psx_screens += psxgetrusage01/psxgetrusage01.scn 514 psx_docs += psxgetrusage01/psxgetrusage01.doc 515 psxgetrusage01_SOURCES = psxgetrusage01/init.c ../support/src/spin.c 516 psxgetrusage01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxgetrusage01) \ 517 $(support_includes) 518 endif 519 53 520 if HAS_POSIX 54 521 if HAS_CPLUSPLUS 55 _SUBDIRS += psxglobalcon01 56 _SUBDIRS += psxglobalcon02 57 endif 58 _SUBDIRS += psxhdrs 59 _SUBDIRS += psxintrcritical01 60 _SUBDIRS += psxitimer 61 endif 62 _SUBDIRS += psxkey01 63 _SUBDIRS += psxkey02 64 _SUBDIRS += psxkey03 65 _SUBDIRS += psxkey04 66 _SUBDIRS += psxkey05 67 _SUBDIRS += psxkey06 68 if HAS_POSIX 69 _SUBDIRS += psxkey07 70 endif 71 _SUBDIRS += psxkey08 72 _SUBDIRS += psxkey09 73 _SUBDIRS += psxkey10 74 if HAS_POSIX 75 _SUBDIRS += psxmsgq01 76 _SUBDIRS += psxmsgq02 77 _SUBDIRS += psxmsgq03 78 _SUBDIRS += psxmsgq04 79 _SUBDIRS += psxmutexattr01 80 _SUBDIRS += psxobj01 81 endif 82 _SUBDIRS += psxonce01 83 _SUBDIRS += psxrdwrv 84 if HAS_POSIX 85 _SUBDIRS += psxrwlock01 86 _SUBDIRS += psxsem01 87 _SUBDIRS += psxshm01 88 _SUBDIRS += psxshm02 89 _SUBDIRS += psxmmap01 90 _SUBDIRS += psxsignal01 91 _SUBDIRS += psxsignal02 92 _SUBDIRS += psxsignal03 93 _SUBDIRS += psxsignal04 94 _SUBDIRS += psxsignal05 95 _SUBDIRS += psxsignal06 96 _SUBDIRS += psxspin01 97 _SUBDIRS += psxstack01 98 _SUBDIRS += psxstack02 99 _SUBDIRS += psxstrsignal01 100 _SUBDIRS += psxsysconf 101 endif 102 if HAS_POSIX 103 _SUBDIRS += psxthreadname01 104 _SUBDIRS += psxtime 105 _SUBDIRS += psxtimer01 106 _SUBDIRS += psxtimer02 107 _SUBDIRS += psxualarm 108 _SUBDIRS += psxusleep 109 endif 110 111 112 113 ## File IO tests 114 _SUBDIRS += psx13 115 _SUBDIRS += psxchroot01 116 _SUBDIRS += psxfile01 117 _SUBDIRS += psxfile02 118 _SUBDIRS += psxfilelock01 119 _SUBDIRS += psxgetrusage01 120 _SUBDIRS += psxid01 121 _SUBDIRS += psximfs01 122 _SUBDIRS += psximfs02 123 _SUBDIRS += psxmount 124 _SUBDIRS += psxpasswd01 125 _SUBDIRS += psxpasswd02 126 _SUBDIRS += psxpipe01 127 _SUBDIRS += psxreaddir 128 _SUBDIRS += psxstat 129 _SUBDIRS += psxtimes01 130 _SUBDIRS += psxfchx01 131 132 include $(top_srcdir)/../automake/subdirs.am 522 if TEST_psxglobalcon01 523 psx_tests += psxglobalcon01 524 psx_screens += psxglobalcon01/psxglobalcon01.scn 525 psx_docs += psxglobalcon01/psxglobalcon01.doc 526 psxglobalcon01_SOURCES = psxglobalcon01/init.cc 527 psxglobalcon01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxglobalcon01) \ 528 $(support_includes) 529 endif 530 endif 531 endif 532 533 if HAS_POSIX 534 if HAS_CPLUSPLUS 535 if TEST_psxglobalcon02 536 psx_tests += psxglobalcon02 537 psx_screens += psxglobalcon02/psxglobalcon02.scn 538 psx_docs += psxglobalcon02/psxglobalcon02.doc 539 psxglobalcon02_SOURCES = psxglobalcon02/init.cc 540 psxglobalcon02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxglobalcon02) \ 541 $(support_includes) 542 endif 543 endif 544 endif 545 546 if TEST_psxid01 547 psx_tests += psxid01 548 psx_screens += psxid01/psxid01.scn 549 psx_docs += psxid01/psxid01.doc 550 psxid01_SOURCES = psxid01/init.c 551 psxid01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxid01) \ 552 $(support_includes) 553 endif 554 555 if TEST_psximfs01 556 psx_tests += psximfs01 557 psx_screens += psximfs01/psximfs01.scn 558 psx_docs += psximfs01/psximfs01.doc 559 psximfs01_SOURCES = psximfs01/init.c 560 psximfs01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psximfs01) \ 561 $(support_includes) 562 endif 563 564 if TEST_psximfs02 565 psx_tests += psximfs02 566 psx_screens += psximfs02/psximfs02.scn 567 psx_docs += psximfs02/psximfs02.doc 568 psximfs02_SOURCES = psximfs02/init.c 569 psximfs02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psximfs02) \ 570 $(support_includes) 571 endif 572 573 if HAS_POSIX 574 if TEST_psxintrcritical01 575 psx_tests += psxintrcritical01 576 psx_screens += psxintrcritical01/psxintrcritical01.scn 577 psx_docs += psxintrcritical01/psxintrcritical01.doc 578 psxintrcritical01_SOURCES = psxintrcritical01/init.c \ 579 ../sptests/spintrcritical_support/intrcritical.c 580 psxintrcritical01_CPPFLAGS = $(AM_CPPFLAGS) \ 581 $(TEST_FLAGS_psxintrcritical01) $(support_includes) \ 582 -I$(top_srcdir)/../sptests/spintrcritical_support 583 endif 584 endif 585 586 if HAS_POSIX 587 if TEST_psxitimer 588 psx_tests += psxitimer 589 psx_screens += psxitimer/psxitimer.scn 590 psxitimer_SOURCES = psxitimer/init.c include/pmacros.h 591 psxitimer_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxitimer) \ 592 $(support_includes) -I$(top_srcdir)/include 593 endif 594 endif 595 596 if TEST_psxkey01 597 psx_tests += psxkey01 598 psx_screens += psxkey01/psxkey01.scn 599 psxkey01_SOURCES = psxkey01/init.c psxkey01/system.h include/pmacros.h \ 600 ../support/src/test_support.c 601 psxkey01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxkey01) \ 602 $(support_includes) -I$(top_srcdir)/include 603 endif 604 605 if TEST_psxkey02 606 psx_tests += psxkey02 607 psx_screens += psxkey02/psxkey02.scn 608 psx_docs += psxkey02/psxkey02.doc 609 psxkey02_SOURCES = psxkey02/init.c 610 psxkey02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxkey02) \ 611 $(support_includes) -I$(top_srcdir)/include 612 endif 613 614 if TEST_psxkey03 615 psx_tests += psxkey03 616 psx_screens += psxkey03/psxkey03.scn 617 psx_docs += psxkey03/psxkey03.doc 618 psxkey03_SOURCES = psxkey03/init.c 619 psxkey03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxkey03) \ 620 $(support_includes) -I$(top_srcdir)/include 621 endif 622 623 if TEST_psxkey04 624 psx_tests += psxkey04 625 psx_screens += psxkey04/psxkey04.scn 626 psx_docs += psxkey04/psxkey04.doc 627 psxkey04_SOURCES = psxkey04/init.c 628 psxkey04_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxkey04) \ 629 $(support_includes) -I$(top_srcdir)/include 630 endif 631 632 if TEST_psxkey05 633 psx_tests += psxkey05 634 psx_screens += psxkey05/psxkey05.scn 635 psx_docs += psxkey05/psxkey05.doc 636 psxkey05_SOURCES = psxkey05/init.c 637 psxkey05_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxkey05) \ 638 $(support_includes) -I$(top_srcdir)/include 639 endif 640 641 if TEST_psxkey06 642 psx_tests += psxkey06 643 psx_screens += psxkey06/psxkey06.scn 644 psx_docs += psxkey06/psxkey06.doc 645 psxkey06_SOURCES = psxkey06/init.c 646 psxkey06_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxkey06) \ 647 $(support_includes) -I$(top_srcdir)/include 648 endif 649 650 if HAS_POSIX 651 if TEST_psxkey07 652 psx_tests += psxkey07 653 psx_screens += psxkey07/psxkey07.scn 654 psx_docs += psxkey07/psxkey07.doc 655 psxkey07_SOURCES = psxkey07/init.c 656 psxkey07_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxkey07) \ 657 $(support_includes) -I$(top_srcdir)/include 658 endif 659 endif 660 661 if TEST_psxkey08 662 psx_tests += psxkey08 663 psx_screens += psxkey08/psxkey08.scn 664 psx_docs += psxkey08/psxkey08.doc 665 psxkey08_SOURCES = psxkey08/init.c 666 psxkey08_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxkey08) \ 667 $(support_includes) -I$(top_srcdir)/include 668 endif 669 670 if TEST_psxkey09 671 psx_tests += psxkey09 672 psx_screens += psxkey09/psxkey09.scn 673 psx_docs += psxkey09/psxkey09.doc 674 psxkey09_SOURCES = psxkey09/init.c 675 psxkey09_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxkey09) \ 676 $(support_includes) -I$(top_srcdir)/include 677 endif 678 679 if TEST_psxkey10 680 psx_tests += psxkey10 681 psx_screens += psxkey10/psxkey10.scn 682 psx_docs += psxkey10/psxkey10.doc 683 psxkey10_SOURCES = psxkey10/init.c 684 psxkey10_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxkey10) \ 685 $(support_includes) -I$(top_srcdir)/include 686 endif 687 688 if HAS_POSIX 689 if TEST_psxmmap01 690 psx_tests += psxmmap01 691 psx_screens += psxmmap01/psxmmap01.scn 692 psxmmap01_SOURCES = psxmmap01/init.c psxmmap01/test_helper.c \ 693 psxmmap01/test_driver.c psxmmap01/system.h 694 psxmmap01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxmmap01) \ 695 $(support_includes) -I$(top_srcdir)/include 696 endif 697 endif 698 699 if TEST_psxmount 700 psx_tests += psxmount 701 psx_screens += psxmount/psxmount.scn 702 psxmount_SOURCES = psxmount/main.c psxmount/test.c include/pmacros.h 703 psxmount_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxmount) \ 704 $(support_includes) -I$(top_srcdir)/include 705 endif 706 707 if HAS_POSIX 708 if TEST_psxmsgq01 709 psx_tests += psxmsgq01 710 psx_screens += psxmsgq01/psxmsgq01.scn 711 psxmsgq01_SOURCES = psxmsgq01/init.c psxmsgq01/system.h \ 712 include/pmacros.h ../support/src/test_support.c 713 psxmsgq01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxmsgq01) \ 714 $(support_includes) -I$(top_srcdir)/include 715 endif 716 endif 717 718 if HAS_POSIX 719 if TEST_psxmsgq02 720 psx_tests += psxmsgq02 721 psx_screens += psxmsgq02/psxmsgq02.scn 722 psxmsgq02_SOURCES = psxmsgq02/init.c psxmsgq02/system.h \ 723 include/pmacros.h ../support/src/test_support.c 724 psxmsgq02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxmsgq02) \ 725 $(support_includes) -I$(top_srcdir)/include 726 endif 727 endif 728 729 if HAS_POSIX 730 if TEST_psxmsgq03 731 psx_tests += psxmsgq03 732 psx_screens += psxmsgq03/psxmsgq03.scn 733 psx_docs += psxmsgq03/psxmsgq03.doc 734 psxmsgq03_SOURCES = psxmsgq03/init.c psxmsgq03/system.h \ 735 include/pmacros.h ../support/src/test_support.c 736 psxmsgq03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxmsgq03) \ 737 $(support_includes) -I$(top_srcdir)/include 738 endif 739 endif 740 741 if HAS_POSIX 742 if TEST_psxmsgq04 743 psx_tests += psxmsgq04 744 psx_screens += psxmsgq04/psxmsgq04.scn 745 psx_docs += psxmsgq04/psxmsgq04.doc 746 psxmsgq04_SOURCES = psxmsgq04/init.c include/pmacros.h \ 747 ../support/src/test_support.c 748 psxmsgq04_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxmsgq04) \ 749 $(support_includes) -I$(top_srcdir)/include 750 endif 751 endif 752 753 if HAS_POSIX 754 if TEST_psxmutexattr01 755 psx_tests += psxmutexattr01 756 psx_screens += psxmutexattr01/psxmutexattr01.scn 757 psx_docs += psxmutexattr01/psxmutexattr01.doc 758 psxmutexattr01_SOURCES = psxmutexattr01/init.c 759 psxmutexattr01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxmutexattr01) \ 760 $(support_includes) -I$(top_srcdir)/include 761 endif 762 endif 763 764 if HAS_POSIX 765 if TEST_psxobj01 766 psx_tests += psxobj01 767 psx_screens += psxobj01/psxobj01.scn 768 psx_docs += psxobj01/psxobj01.doc 769 psxobj01_SOURCES = psxobj01/init.c ../support/src/test_support.c 770 psxobj01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxobj01) \ 771 $(support_includes) -I$(top_srcdir)/include 772 endif 773 endif 774 775 if TEST_psxonce01 776 psx_tests += psxonce01 777 psx_screens += psxonce01/psxonce01.scn 778 psxonce01_SOURCES = psxonce01/init.c psxonce01/system.h \ 779 include/pmacros.h 780 psxonce01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxonce01) \ 781 $(support_includes) -I$(top_srcdir)/include 782 endif 783 784 if TEST_psxpasswd01 785 psx_tests += psxpasswd01 786 psx_screens += psxpasswd01/psxpasswd01.scn 787 psx_docs += psxpasswd01/psxpasswd01.doc 788 psxpasswd01_SOURCES = psxpasswd01/init.c include/pmacros.h 789 psxpasswd01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxpasswd01) \ 790 $(support_includes) -I$(top_srcdir)/include 791 endif 792 793 if TEST_psxpasswd02 794 psx_tests += psxpasswd02 795 psx_screens += psxpasswd02/psxpasswd02.scn 796 psx_docs += psxpasswd02/psxpasswd02.doc 797 psxpasswd02_SOURCES = psxpasswd02/init.c include/pmacros.h 798 psxpasswd02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxpasswd02) \ 799 $(support_includes) -I$(top_srcdir)/include 800 endif 801 802 if TEST_psxpipe01 803 psx_tests += psxpipe01 804 psx_screens += psxpipe01/psxpipe01.scn 805 psx_docs += psxpipe01/psxpipe01.doc 806 psxpipe01_SOURCES = psxpipe01/init.c include/pmacros.h 807 psxpipe01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxpipe01) \ 808 $(support_includes) -I$(top_srcdir)/include 809 endif 810 811 if TEST_psxrdwrv 812 psx_tests += psxrdwrv 813 psx_screens += psxrdwrv/psxrdwrv.scn 814 psxrdwrv_SOURCES = psxrdwrv/main.c psxrdwrv/test.c include/pmacros.h 815 psxrdwrv_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxrdwrv) \ 816 $(support_includes) -I$(top_srcdir)/include 817 endif 818 819 if TEST_psxreaddir 820 psx_tests += psxreaddir 821 psx_screens += psxreaddir/psxreaddir.scn 822 psxreaddir_SOURCES = psxreaddir/main.c psxreaddir/test.c \ 823 include/pmacros.h 824 psxreaddir_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxreaddir) \ 825 $(support_includes) -I$(top_srcdir)/include 826 endif 827 828 if HAS_POSIX 829 if TEST_psxrwlock01 830 psx_tests += psxrwlock01 831 psx_screens += psxrwlock01/psxrwlock01.scn 832 psxrwlock01_SOURCES = psxrwlock01/main.c psxrwlock01/test.c \ 833 include/pmacros.h 834 psxrwlock01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxrwlock01) \ 835 $(support_includes) -I$(top_srcdir)/include 836 endif 837 endif 838 839 if HAS_POSIX 840 if TEST_psxsem01 841 psx_tests += psxsem01 842 psx_screens += psxsem01/psxsem01.scn 843 psxsem01_SOURCES = psxsem01/init.c include/pmacros.h \ 844 ../support/src/test_support.c 845 psxsem01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxsem01) \ 846 $(support_includes) -I$(top_srcdir)/include 847 endif 848 endif 849 850 if HAS_POSIX 851 if TEST_psxshm01 852 psx_tests += psxshm01 853 psx_screens += psxshm01/psxshm01.scn 854 psxshm01_SOURCES = psxshm01/init.c psxshm01/system.h 855 psxshm01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxshm01) \ 856 $(support_includes) -I$(top_srcdir)/include 857 endif 858 endif 859 860 if HAS_POSIX 861 if TEST_psxshm02 862 psx_tests += psxshm02 863 psx_screens += psxshm02/psxshm02.scn 864 psxshm02_SOURCES = psxshm02/init.c psxshm02/system.h 865 psxshm02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxshm02) \ 866 $(support_includes) -I$(top_srcdir)/include 867 endif 868 endif 869 870 if HAS_POSIX 871 if TEST_psxsignal01 872 psx_tests += psxsignal01 873 psx_screens += psxsignal01/psxsignal01.scn 874 psxsignal01_SOURCES = psxsignal01/init.c psxsignal01/task1.c \ 875 psxsignal01/system.h include/pmacros.h 876 psxsignal01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxsignal01) \ 877 $(support_includes) -I$(top_srcdir)/include 878 endif 879 endif 880 881 if HAS_POSIX 882 if TEST_psxsignal02 883 psx_tests += psxsignal02 884 psx_screens += psxsignal02/psxsignal02.scn 885 psx_docs += psxsignal02/psxsignal02.doc 886 psxsignal02_SOURCES = psxsignal02/init.c include/pmacros.h 887 psxsignal02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxsignal02) \ 888 $(support_includes) -I$(top_srcdir)/include 889 endif 890 endif 891 892 if HAS_POSIX 893 if TEST_psxsignal03 894 psx_tests += psxsignal03 895 psx_screens += psxsignal03/psxsignal03.scn 896 psx_docs += psxsignal03/psxsignal03.doc 897 psxsignal03_SOURCES = psxsignal03/init.c include/pmacros.h 898 psxsignal03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxsignal03) \ 899 $(support_includes) -I$(top_srcdir)/include \ 900 -DUSE_USER_SIGNALS_PROCESS 901 endif 902 endif 903 904 if HAS_POSIX 905 if TEST_psxsignal04 906 psx_tests += psxsignal04 907 psx_screens += psxsignal04/psxsignal04.scn 908 psx_docs += psxsignal04/psxsignal04.doc 909 psxsignal04_SOURCES = psxsignal03/init.c include/pmacros.h 910 psxsignal04_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxsignal04) \ 911 $(support_includes) -I$(top_srcdir)/include \ 912 -DUSE_REAL_TIME_SIGNALS_PROCESS 913 endif 914 endif 915 916 if HAS_POSIX 917 if TEST_psxsignal05 918 psx_tests += psxsignal05 919 psx_screens += psxsignal05/psxsignal05.scn 920 psx_docs += psxsignal05/psxsignal05.doc 921 psxsignal05_SOURCES = psxsignal05/init.c include/pmacros.h 922 psxsignal05_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxsignal05) \ 923 $(support_includes) -I$(top_srcdir)/include 924 endif 925 endif 926 927 if HAS_POSIX 928 if TEST_psxsignal06 929 psx_tests += psxsignal06 930 psx_screens += psxsignal06/psxsignal06.scn 931 psx_docs += psxsignal06/psxsignal06.doc 932 psxsignal06_SOURCES = psxsignal06/init.c 933 psxsignal06_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxsignal06) \ 934 $(support_includes) -I$(top_srcdir)/include 935 endif 936 endif 937 938 if HAS_POSIX 939 if TEST_psxspin01 940 psx_tests += psxspin01 941 psx_screens += psxspin01/psxspin01.scn 942 psxspin01_SOURCES = psxspin01/main.c psxspin01/test.c \ 943 include/pmacros.h 944 psxspin01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxspin01) \ 945 $(support_includes) -I$(top_srcdir)/include 946 endif 947 endif 948 949 if HAS_POSIX 950 if TEST_psxstack01 951 psx_tests += psxstack01 952 psx_screens += psxstack01/psxstack01.scn 953 psx_docs += psxstack01/psxstack01.doc 954 psxstack01_SOURCES = psxstack01/init.c include/pmacros.h 955 psxstack01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxstack01) \ 956 $(support_includes) -I$(top_srcdir)/include 957 endif 958 endif 959 960 if HAS_POSIX 961 if TEST_psxstack02 962 psx_tests += psxstack02 963 psx_screens += psxstack02/psxstack02.scn 964 psx_docs += psxstack02/psxstack02.doc 965 psxstack02_SOURCES = psxstack02/init.c 966 psxstack02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxstack02) \ 967 $(support_includes) -I$(top_srcdir)/include 968 endif 969 endif 970 971 if TEST_psxstat 972 psx_tests += psxstat 973 psx_screens += psxstat/psxstat.scn 974 psxstat_SOURCES = psxstat/main.c psxstat/test.c include/pmacros.h 975 psxstat_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxstat) \ 976 $(support_includes) -I$(top_srcdir)/include 977 endif 978 979 if HAS_POSIX 980 if TEST_psxstrsignal01 981 psx_tests += psxstrsignal01 982 psx_screens += psxstrsignal01/psxstrsignal01.scn 983 psx_docs += psxstrsignal01/psxstrsignal01.doc 984 psxstrsignal01_SOURCES = psxstrsignal01/init.c include/pmacros.h 985 psxstrsignal01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxstrsignal01) \ 986 $(support_includes) -I$(top_srcdir)/include 987 endif 988 endif 989 990 if HAS_POSIX 991 if TEST_psxsysconf 992 psx_tests += psxsysconf 993 psx_screens += psxsysconf/psxsysconf.scn 994 psxsysconf_SOURCES = psxsysconf/init.c psxsysconf/system.h \ 995 include/pmacros.h 996 psxsysconf_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxsysconf) \ 997 $(support_includes) -I$(top_srcdir)/include 998 endif 999 endif 1000 1001 if HAS_POSIX 1002 if TEST_psxthreadname01 1003 psx_tests += psxthreadname01 1004 psx_screens += psxthreadname01/psxthreadname01.scn 1005 psx_docs += psxthreadname01/psxthreadname01.doc 1006 psxthreadname01_SOURCES = psxthreadname01/init.c 1007 psxthreadname01_CPPFLAGS = $(AM_CPPFLAGS) \ 1008 $(TEST_FLAGS_psxthreadname01) $(support_includes) 1009 endif 1010 endif 1011 1012 if HAS_POSIX 1013 if TEST_psxtime 1014 psx_tests += psxtime 1015 psx_screens += psxtime/psxtime.scn 1016 psxtime_SOURCES = psxtime/main.c psxtime/test.c 1017 psxtime_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxtime) \ 1018 $(support_includes) 1019 endif 1020 endif 1021 1022 if HAS_POSIX 1023 if TEST_psxtimer01 1024 psx_tests += psxtimer01 1025 psx_screens += psxtimer01/psxtimer01.scn 1026 psxtimer01_SOURCES = psxtimer01/psxtimer.c psxtimer01/system.h \ 1027 include/pmacros.h 1028 psxtimer01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxtimer01) \ 1029 $(support_includes) -I$(top_srcdir)/include 1030 endif 1031 endif 1032 1033 if HAS_POSIX 1034 if TEST_psxtimer02 1035 psx_tests += psxtimer02 1036 psx_screens += psxtimer02/psxtimer02.scn 1037 psxtimer02_SOURCES = psxtimer02/psxtimer.c psxtimer02/system.h \ 1038 include/pmacros.h 1039 psxtimer02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxtimer02) \ 1040 $(support_includes) -I$(top_srcdir)/include 1041 endif 1042 endif 1043 1044 if TEST_psxtimes01 1045 psx_tests += psxtimes01 1046 psx_screens += psxtimes01/psxtimes01.scn 1047 psx_docs += psxtimes01/psxtimes01.doc 1048 psxtimes01_SOURCES = psxtimes01/init.c ../support/src/spin.c 1049 psxtimes01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxtimes01) \ 1050 $(support_includes) 1051 endif 1052 1053 if HAS_POSIX 1054 if TEST_psxualarm 1055 psx_tests += psxualarm 1056 psx_screens += psxualarm/psxualarm.scn 1057 psxualarm_SOURCES = psxualarm/init.c psxualarm/system.h \ 1058 include/pmacros.h 1059 psxualarm_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxualarm) \ 1060 $(support_includes) -I$(top_srcdir)/include 1061 endif 1062 endif 1063 1064 if HAS_POSIX 1065 if TEST_psxusleep 1066 psx_tests += psxusleep 1067 psx_screens += psxusleep/psxusleep.scn 1068 psx_docs += psxusleep/psxusleep.doc 1069 psxusleep_SOURCES = psxusleep/init.c include/pmacros.h 1070 psxusleep_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_psxusleep) \ 1071 $(support_includes) -I$(top_srcdir)/include 1072 endif 1073 endif 1074 1075 if HAS_POSIX 1076 if TEST_lib_a 1077 psx_lib += lib.a 1078 lib_a_SOURCES = psxhdrs/devctl/posix_devctl.c \ 1079 psxhdrs/pthread/pthread_attr_destroy.c \ 1080 psxhdrs/pthread/pthread_attr_getdetachstate.c \ 1081 psxhdrs/pthread/pthread_attr_getguardsize.c \ 1082 psxhdrs/pthread/pthread_attr_getinheritsched.c \ 1083 psxhdrs/pthread/pthread_attr_getschedparam.c \ 1084 psxhdrs/pthread/pthread_attr_getschedpolicy.c \ 1085 psxhdrs/pthread/pthread_attr_getscope.c \ 1086 psxhdrs/pthread/pthread_attr_getstackaddr.c \ 1087 psxhdrs/pthread/pthread_attr_getstack.c \ 1088 psxhdrs/pthread/pthread_attr_getstacksize.c \ 1089 psxhdrs/pthread/pthread_attr_init.c \ 1090 psxhdrs/pthread/pthread_attr_setdetachstate.c \ 1091 psxhdrs/pthread/pthread_attr_setguardsize.c \ 1092 psxhdrs/pthread/pthread_attr_setinheritsched.c \ 1093 psxhdrs/pthread/pthread_attr_setschedparam.c \ 1094 psxhdrs/pthread/pthread_attr_setschedpolicy.c \ 1095 psxhdrs/pthread/pthread_attr_setscope.c \ 1096 psxhdrs/pthread/pthread_attr_setstackaddr.c \ 1097 psxhdrs/pthread/pthread_attr_setstack.c \ 1098 psxhdrs/pthread/pthread_attr_setstacksize.c \ 1099 psxhdrs/pthread/pthread_cancel.c psxhdrs/pthread/pthread_cleanup.c \ 1100 psxhdrs/pthread/pthread_condattr_destroy.c \ 1101 psxhdrs/pthread/pthread_condattr_getpshared.c \ 1102 psxhdrs/pthread/pthread_condattr_init.c \ 1103 psxhdrs/pthread/pthread_condattr_setpshared.c \ 1104 psxhdrs/pthread/pthread_cond_broadcast.c \ 1105 psxhdrs/pthread/pthread_cond_destroy.c \ 1106 psxhdrs/pthread/pthread_cond_init.c \ 1107 psxhdrs/pthread/pthread_cond_signal.c \ 1108 psxhdrs/pthread/pthread_cond_timedwait.c \ 1109 psxhdrs/pthread/pthread_cond_wait.c psxhdrs/pthread/pthread_create.c \ 1110 psxhdrs/pthread/pthread_detach.c psxhdrs/pthread/pthread_equal.c \ 1111 psxhdrs/pthread/pthread_exit.c \ 1112 psxhdrs/pthread/pthread_getconcurrency.c \ 1113 psxhdrs/pthread/pthread_getcpuclockid.c \ 1114 psxhdrs/pthread/pthread_getschedparam.c \ 1115 psxhdrs/pthread/pthread_getspecific.c psxhdrs/pthread/pthread_join.c \ 1116 psxhdrs/pthread/pthread_key_create.c \ 1117 psxhdrs/pthread/pthread_key_delete.c \ 1118 psxhdrs/pthread/pthread_mutexattr_destroy.c \ 1119 psxhdrs/pthread/pthread_mutexattr_getprioceiling.c \ 1120 psxhdrs/pthread/pthread_mutexattr_getprotocol.c \ 1121 psxhdrs/pthread/pthread_mutexattr_getpshared.c \ 1122 psxhdrs/pthread/pthread_mutexattr_init.c \ 1123 psxhdrs/pthread/pthread_mutexattr_setprioceiling.c \ 1124 psxhdrs/pthread/pthread_mutexattr_setprotocol.c \ 1125 psxhdrs/pthread/pthread_mutexattr_setpshared.c \ 1126 psxhdrs/pthread/pthread_mutex_destroy.c \ 1127 psxhdrs/pthread/pthread_mutex_getprioceiling.c \ 1128 psxhdrs/pthread/pthread_mutex_init.c \ 1129 psxhdrs/pthread/pthread_mutex_lock.c \ 1130 psxhdrs/pthread/pthread_mutex_setprioceiling.c \ 1131 psxhdrs/pthread/pthread_mutex_timedlock.c \ 1132 psxhdrs/pthread/pthread_mutex_trylock.c \ 1133 psxhdrs/pthread/pthread_mutex_unlock.c psxhdrs/pthread/pthread_once.c \ 1134 psxhdrs/pthread/pthread_self.c \ 1135 psxhdrs/pthread/pthread_setcancelstate.c \ 1136 psxhdrs/pthread/pthread_setcanceltype.c \ 1137 psxhdrs/pthread/pthread_setconcurrency.c \ 1138 psxhdrs/pthread/pthread_setschedparam.c \ 1139 psxhdrs/pthread/pthread_setspecific.c \ 1140 psxhdrs/pthread/pthread_testcancel.c psxhdrs/sched/sched_getparam.c \ 1141 psxhdrs/sched/sched_get_priority_max.c \ 1142 psxhdrs/sched/sched_get_priority_min.c \ 1143 psxhdrs/sched/sched_getscheduler.c \ 1144 psxhdrs/sched/sched_rr_get_interval.c psxhdrs/sched/sched_setparam.c \ 1145 psxhdrs/sched/sched_setscheduler.c psxhdrs/sched/sched_yield.c \ 1146 psxhdrs/signal/pthread_sigmask.c psxhdrs/signal/raise.c \ 1147 psxhdrs/signal/signal.c psxhdrs/signal/sigpending.c \ 1148 psxhdrs/signal/sigprocmask.c psxhdrs/signal/sigsuspend.c \ 1149 psxhdrs/signal/sigtimedwait.c psxhdrs/signal/sigwait.c \ 1150 psxhdrs/signal/sigwaitinfo.c psxhdrs/time/asctime.c \ 1151 psxhdrs/time/asctime_r.c psxhdrs/time/clock.c \ 1152 psxhdrs/time/clock_getcpuclockid.c psxhdrs/time/clock_getres.c \ 1153 psxhdrs/time/clock_gettime.c psxhdrs/time/clock_nanosleep.c \ 1154 psxhdrs/time/clock_settime.c psxhdrs/time/ctime.c \ 1155 psxhdrs/time/ctime_r.c psxhdrs/time/difftime.c psxhdrs/time/gmtime.c \ 1156 psxhdrs/time/gmtime_r.c psxhdrs/time/localtime.c \ 1157 psxhdrs/time/localtime_r.c psxhdrs/time/mktime.c \ 1158 psxhdrs/time/nanosleep.c psxhdrs/time/strftime.c psxhdrs/time/time.c \ 1159 psxhdrs/time/timer_create.c psxhdrs/time/timer_delete.c \ 1160 psxhdrs/time/timer_getoverrun.c psxhdrs/time/timer_gettime.c \ 1161 psxhdrs/time/timer_settime.c psxhdrs/unistd/alarm.c \ 1162 psxhdrs/unistd/fdatasync.c psxhdrs/unistd/fsync.c \ 1163 psxhdrs/unistd/getegid.c psxhdrs/unistd/geteuid.c \ 1164 psxhdrs/unistd/getgid.c psxhdrs/unistd/getgroups.c \ 1165 psxhdrs/unistd/getlogin.c psxhdrs/unistd/getlogin_r.c \ 1166 psxhdrs/unistd/getpgrp.c psxhdrs/unistd/getpid.c \ 1167 psxhdrs/unistd/getppid.c psxhdrs/unistd/getuid.c \ 1168 psxhdrs/unistd/pause.c psxhdrs/unistd/setgid.c \ 1169 psxhdrs/unistd/setgroups.c psxhdrs/unistd/setpgid.c \ 1170 psxhdrs/unistd/setsid.c psxhdrs/unistd/setuid.c \ 1171 psxhdrs/unistd/sleep.c psxhdrs/unistd/sync.c psxhdrs/unistd/ualarm.c \ 1172 psxhdrs/unistd/usleep.c psxhdrs/sys/mman/mlockall.c \ 1173 psxhdrs/sys/mman/mlock.c psxhdrs/sys/mman/mmap.c \ 1174 psxhdrs/sys/mman/mprotect.c psxhdrs/sys/mman/msync.c \ 1175 psxhdrs/sys/mman/munlockall.c psxhdrs/sys/mman/munlock.c \ 1176 psxhdrs/sys/mman/munmap.c psxhdrs/sys/mman/posix_madvise.c \ 1177 psxhdrs/sys/mman/shm_open.c psxhdrs/sys/mman/shm_unlink.c \ 1178 psxhdrs/sys/socket/accept.c psxhdrs/sys/socket/bind.c \ 1179 psxhdrs/sys/socket/connect.c psxhdrs/sys/socket/getpeername.c \ 1180 psxhdrs/sys/socket/getsockname.c psxhdrs/sys/socket/getsockopt.c \ 1181 psxhdrs/sys/socket/listen.c psxhdrs/sys/socket/recv.c \ 1182 psxhdrs/sys/socket/recvfrom.c psxhdrs/sys/socket/recvmsg.c \ 1183 psxhdrs/sys/socket/send.c psxhdrs/sys/socket/sendmsg.c \ 1184 psxhdrs/sys/socket/sendto.c psxhdrs/sys/socket/setsockopt.c \ 1185 psxhdrs/sys/socket/shutdown.c psxhdrs/sys/socket/socket.c \ 1186 psxhdrs/sys/socket/socketpair.c 1187 endif 1188 endif 1189 1190 rtems_tests_PROGRAMS = $(psx_tests) 1191 noinst_LIBRARIES = $(psx_lib) 1192 dist_rtems_tests_DATA = $(psx_screens) $(psx_docs) 1193 133 1194 include $(top_srcdir)/../automake/local.am -
testsuites/psxtests/configure.ac
r3206879f r2a99a6a 109 109 AC_CHECK_SIZEOF([mode_t]) 110 110 111 # Explicitly list all Makefiles here112 AC_CONFIG_FILES([Makefile 113 psx01/Makefile 114 psx02/Makefile 115 psx03/Makefile 116 psx04/Makefile 117 psx05/Makefile 118 psx06/Makefile 119 psx07/Makefile 120 psx08/Makefile 121 psx09/Makefile 122 psx10/Makefile 123 psx11/Makefile 124 psx12/Makefile 125 psx13/Makefile 126 psx14/Makefile 127 psx15/Makefile 128 psx16/Makefile 129 psxaio01/Makefile 130 psxaio02/Makefile 131 psxaio03/Makefile 132 psxalarm01/Makefile 133 psxautoinit01/Makefile 134 psxautoinit02/Makefile 135 psxbarrier01/Makefile 136 psxcancel/Makefile 137 psxcancel01/Makefile 138 psxchroot01/Makefile 139 psxclassic01/Makefile 140 psxcleanup/Makefile 141 psxcleanup01/Makefile 142 psxcleanup02/Makefile 143 psxclock/Makefile 144 psxclock01/Makefile 145 psxclockrealtime01/Makefile 146 psxconcurrency01/Makefile 147 psxcond01/Makefile 148 psxcond02/Makefile 149 psxconfig01/Makefile 150 psxdevctl01/Makefile 151 psxeintr_join/Makefile 152 psxenosys/Makefile 153 psxfatal01/Makefile 154 psxfatal02/Makefile 155 psxfchx01/Makefile 156 psxfile01/Makefile 157 psxfile02/Makefile 158 psxfilelock01/Makefile 159 psxgetattrnp01/Makefile 160 psxgetrusage01/Makefile 161 psxglobalcon01/Makefile 162 psxglobalcon02/Makefile 163 psxhdrs/Makefile 164 psxid01/Makefile 165 psximfs01/Makefile 166 psximfs02/Makefile 167 psxintrcritical01/Makefile 168 psxitimer/Makefile 169 psxkey01/Makefile 170 psxkey02/Makefile 171 psxkey03/Makefile 172 psxkey04/Makefile 173 psxkey05/Makefile 174 psxkey06/Makefile 175 psxkey07/Makefile 176 psxkey08/Makefile 177 psxkey09/Makefile 178 psxkey10/Makefile 179 psxmount/Makefile 180 psxmsgq01/Makefile 181 psxmsgq02/Makefile 182 psxmsgq03/Makefile 183 psxmsgq04/Makefile 184 psxmutexattr01/Makefile 185 psxobj01/Makefile 186 psxonce01/Makefile 187 psxpasswd01/Makefile 188 psxpasswd02/Makefile 189 psxpipe01/Makefile 190 psxrdwrv/Makefile 191 psxreaddir/Makefile 192 psxrwlock01/Makefile 193 psxsem01/Makefile 194 psxshm01/Makefile 195 psxshm02/Makefile 196 psxmmap01/Makefile 197 psxsignal01/Makefile 198 psxsignal02/Makefile 199 psxsignal03/Makefile 200 psxsignal04/Makefile 201 psxsignal05/Makefile 202 psxsignal06/Makefile 203 psxspin01/Makefile 204 psxstack01/Makefile 205 psxstack02/Makefile 206 psxstat/Makefile 207 psxstrsignal01/Makefile 208 psxsysconf/Makefile 209 psxthreadname01/Makefile 210 psxtime/Makefile 211 psxtimer01/Makefile 212 psxtimer02/Makefile 213 psxtimes01/Makefile 214 psxualarm/Makefile 215 psxusleep/Makefile 216 ])111 # BSP Test configuration 112 RTEMS_TEST_CHECK([psx01]) 113 RTEMS_TEST_CHECK([psx02]) 114 RTEMS_TEST_CHECK([psx03]) 115 RTEMS_TEST_CHECK([psx04]) 116 RTEMS_TEST_CHECK([psx05]) 117 RTEMS_TEST_CHECK([psx06]) 118 RTEMS_TEST_CHECK([psx07]) 119 RTEMS_TEST_CHECK([psx08]) 120 RTEMS_TEST_CHECK([psx09]) 121 RTEMS_TEST_CHECK([psx10]) 122 RTEMS_TEST_CHECK([psx11]) 123 RTEMS_TEST_CHECK([psx12]) 124 RTEMS_TEST_CHECK([psx13]) 125 RTEMS_TEST_CHECK([psx14]) 126 RTEMS_TEST_CHECK([psx15]) 127 RTEMS_TEST_CHECK([psx16]) 128 RTEMS_TEST_CHECK([psxaio01]) 129 RTEMS_TEST_CHECK([psxaio02]) 130 RTEMS_TEST_CHECK([psxaio03]) 131 RTEMS_TEST_CHECK([psxalarm01]) 132 RTEMS_TEST_CHECK([psxautoinit01]) 133 RTEMS_TEST_CHECK([psxautoinit02]) 134 RTEMS_TEST_CHECK([psxbarrier01]) 135 RTEMS_TEST_CHECK([psxcancel]) 136 RTEMS_TEST_CHECK([psxcancel01]) 137 RTEMS_TEST_CHECK([psxchroot01]) 138 RTEMS_TEST_CHECK([psxclassic01]) 139 RTEMS_TEST_CHECK([psxcleanup]) 140 RTEMS_TEST_CHECK([psxcleanup01]) 141 RTEMS_TEST_CHECK([psxcleanup02]) 142 RTEMS_TEST_CHECK([psxclock]) 143 RTEMS_TEST_CHECK([psxclock01]) 144 RTEMS_TEST_CHECK([psxclockrealtime01]) 145 RTEMS_TEST_CHECK([psxconcurrency01]) 146 RTEMS_TEST_CHECK([psxcond01]) 147 RTEMS_TEST_CHECK([psxcond02]) 148 RTEMS_TEST_CHECK([psxconfig01]) 149 RTEMS_TEST_CHECK([psxdevctl01]) 150 RTEMS_TEST_CHECK([psxeintr_join]) 151 RTEMS_TEST_CHECK([psxenosys]) 152 RTEMS_TEST_CHECK([psxfatal01]) 153 RTEMS_TEST_CHECK([psxfatal02]) 154 RTEMS_TEST_CHECK([psxfchx01]) 155 RTEMS_TEST_CHECK([psxfile01]) 156 RTEMS_TEST_CHECK([psxfile02]) 157 RTEMS_TEST_CHECK([psxfilelock01]) 158 RTEMS_TEST_CHECK([psxgetattrnp01]) 159 RTEMS_TEST_CHECK([psxgetrusage01]) 160 RTEMS_TEST_CHECK([psxglobalcon01]) 161 RTEMS_TEST_CHECK([psxglobalcon02]) 162 RTEMS_TEST_CHECK([psxid01]) 163 RTEMS_TEST_CHECK([psximfs01]) 164 RTEMS_TEST_CHECK([psximfs02]) 165 RTEMS_TEST_CHECK([psxintrcritical01]) 166 RTEMS_TEST_CHECK([psxitimer]) 167 RTEMS_TEST_CHECK([psxkey01]) 168 RTEMS_TEST_CHECK([psxkey02]) 169 RTEMS_TEST_CHECK([psxkey03]) 170 RTEMS_TEST_CHECK([psxkey04]) 171 RTEMS_TEST_CHECK([psxkey05]) 172 RTEMS_TEST_CHECK([psxkey06]) 173 RTEMS_TEST_CHECK([psxkey07]) 174 RTEMS_TEST_CHECK([psxkey08]) 175 RTEMS_TEST_CHECK([psxkey09]) 176 RTEMS_TEST_CHECK([psxkey10]) 177 RTEMS_TEST_CHECK([psxmmap01]) 178 RTEMS_TEST_CHECK([psxmount]) 179 RTEMS_TEST_CHECK([psxmsgq01]) 180 RTEMS_TEST_CHECK([psxmsgq02]) 181 RTEMS_TEST_CHECK([psxmsgq03]) 182 RTEMS_TEST_CHECK([psxmsgq04]) 183 RTEMS_TEST_CHECK([psxmutexattr01]) 184 RTEMS_TEST_CHECK([psxobj01]) 185 RTEMS_TEST_CHECK([psxonce01]) 186 RTEMS_TEST_CHECK([psxpasswd01]) 187 RTEMS_TEST_CHECK([psxpasswd02]) 188 RTEMS_TEST_CHECK([psxpipe01]) 189 RTEMS_TEST_CHECK([psxrdwrv]) 190 RTEMS_TEST_CHECK([psxreaddir]) 191 RTEMS_TEST_CHECK([psxrwlock01]) 192 RTEMS_TEST_CHECK([psxsem01]) 193 RTEMS_TEST_CHECK([psxshm01]) 194 RTEMS_TEST_CHECK([psxshm02]) 195 RTEMS_TEST_CHECK([psxsignal01]) 196 RTEMS_TEST_CHECK([psxsignal02]) 197 RTEMS_TEST_CHECK([psxsignal03]) 198 RTEMS_TEST_CHECK([psxsignal04]) 199 RTEMS_TEST_CHECK([psxsignal05]) 200 RTEMS_TEST_CHECK([psxsignal06]) 201 RTEMS_TEST_CHECK([psxspin01]) 202 RTEMS_TEST_CHECK([psxstack01]) 203 RTEMS_TEST_CHECK([psxstack02]) 204 RTEMS_TEST_CHECK([psxstat]) 205 RTEMS_TEST_CHECK([psxstrsignal01]) 206 RTEMS_TEST_CHECK([psxsysconf]) 207 RTEMS_TEST_CHECK([psxthreadname01]) 208 RTEMS_TEST_CHECK([psxtime]) 209 RTEMS_TEST_CHECK([psxtimer01]) 210 RTEMS_TEST_CHECK([psxtimer02]) 211 RTEMS_TEST_CHECK([psxtimes01]) 212 RTEMS_TEST_CHECK([psxualarm]) 213 RTEMS_TEST_CHECK([psxusleep]) 214 RTEMS_TEST_CHECK([lib_a]) 215 216 AC_CONFIG_FILES([Makefile]) 217 217 AC_OUTPUT
Note: See TracChangeset
for help on using the changeset viewer.