Changeset 455a7d5 for tests/preempt_longrun
- Timestamp:
- Aug 9, 2018, 6:35:02 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, stuck-waitfor-destruct
- Children:
- ea5b7d6
- Parents:
- fb975a50 (diff), 0c827019 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- tests/preempt_longrun
- Files:
-
- 14 moved
-
Makefile.am (moved) (moved from src/tests/preempt_longrun/Makefile.am ) (1 diff)
-
Makefile.in (moved) (moved from src/tests/preempt_longrun/Makefile.in ) (6 diffs)
-
block.c (moved) (moved from src/tests/preempt_longrun/block.c )
-
coroutine.c (moved) (moved from src/tests/preempt_longrun/coroutine.c )
-
create.c (moved) (moved from src/tests/preempt_longrun/create.c ) (1 diff)
-
disjoint.c (moved) (moved from src/tests/preempt_longrun/disjoint.c )
-
enter.c (moved) (moved from src/tests/preempt_longrun/enter.c ) (1 diff)
-
enter3.c (moved) (moved from src/tests/preempt_longrun/enter3.c ) (1 diff)
-
preempt.c (moved) (moved from src/tests/preempt_longrun/preempt.c )
-
processor.c (moved) (moved from src/tests/preempt_longrun/processor.c ) (1 diff)
-
stack.c (moved) (moved from src/tests/preempt_longrun/stack.c ) (1 diff)
-
update-type (moved) (moved from src/tests/preempt_longrun/update-type )
-
wait.c (moved) (moved from src/tests/preempt_longrun/wait.c )
-
yield.c (moved) (moved from src/tests/preempt_longrun/yield.c ) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tests/preempt_longrun/Makefile.am
rfb975a50 r455a7d5 32 32 BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -O2 -DPREEMPTION_RATE=${preempt} -I.. -I. -DTEST_$(shell cat .type | tr a-z A-Z) 33 33 CFLAGS = ${BUILD_FLAGS} 34 CC = ${top_builddir}/src/driver/cfa34 CC = @CFACC@ 35 35 36 36 TESTS = block coroutine create disjoint enter enter3 processor stack wait yield -
tests/preempt_longrun/Makefile.in
rfb975a50 r455a7d5 91 91 build_triplet = @build@ 92 92 host_triplet = @host@ 93 subdir = src/tests/preempt_longrun93 subdir = tests/preempt_longrun 94 94 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 95 am__aclocal_m4_deps = $(top_srcdir)/configure.ac 95 am__aclocal_m4_deps = $(top_srcdir)/automake/cfa.m4 \ 96 $(top_srcdir)/configure.ac 96 97 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 97 98 $(ACLOCAL_M4) … … 337 338 AWK = @AWK@ 338 339 BACKEND_CC = @BACKEND_CC@ 339 CC = ${top_builddir}/src/driver/cfa 340 BUILD_IN_TREE_FLAGS = @BUILD_IN_TREE_FLAGS@ 341 CC = @CFACC@ 340 342 CCAS = @CCAS@ 341 343 CCASDEPMODE = @CCASDEPMODE@ 342 344 CCASFLAGS = @CCASFLAGS@ 343 345 CCDEPMODE = @CCDEPMODE@ 346 CFACC = @CFACC@ 347 CFACPP = @CFACPP@ 344 348 CFA_BACKEND_CC = @CFA_BACKEND_CC@ 345 349 CFA_BINDIR = @CFA_BINDIR@ … … 358 362 DEFS = @DEFS@ 359 363 DEPDIR = @DEPDIR@ 364 DRIVER_DIR = @DRIVER_DIR@ 360 365 ECHO_C = @ECHO_C@ 361 366 ECHO_N = @ECHO_N@ … … 373 378 LEXLIB = @LEXLIB@ 374 379 LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ 380 LIBCFA_TARGET_DIRS = @LIBCFA_TARGET_DIRS@ 381 LIBCFA_TARGET_MAKEFILES = @LIBCFA_TARGET_MAKEFILES@ 375 382 LIBOBJS = @LIBOBJS@ 376 383 LIBS = @LIBS@ 377 384 LTLIBOBJS = @LTLIBOBJS@ 378 MACHINE_TYPE = @MACHINE_TYPE@379 385 MAKEINFO = @MAKEINFO@ 380 386 MKDIR_P = @MKDIR_P@ … … 392 398 SHELL = @SHELL@ 393 399 STRIP = @STRIP@ 400 TARGET_HOSTS = @TARGET_HOSTS@ 394 401 VERSION = @VERSION@ 395 402 YACC = @YACC@ … … 474 481 esac; \ 475 482 done; \ 476 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tests/preempt_longrun/Makefile'; \483 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tests/preempt_longrun/Makefile'; \ 477 484 $(am__cd) $(top_srcdir) && \ 478 $(AUTOMAKE) --foreign src/tests/preempt_longrun/Makefile485 $(AUTOMAKE) --foreign tests/preempt_longrun/Makefile 479 486 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 480 487 @case '$?' in \ -
tests/preempt_longrun/create.c
rfb975a50 r455a7d5 1 #include <kernel >2 #include <thread >3 #include <time >1 #include <kernel.hfa> 2 #include <thread.hfa> 3 #include <time.hfa> 4 4 5 5 #include "long_tests.h" -
tests/preempt_longrun/enter.c
rfb975a50 r455a7d5 1 #include <kernel >2 #include <monitor >3 #include <thread >4 #include <time >1 #include <kernel.hfa> 2 #include <monitor.hfa> 3 #include <thread.hfa> 4 #include <time.hfa> 5 5 6 6 #define __kick_rate 75000ul -
tests/preempt_longrun/enter3.c
rfb975a50 r455a7d5 1 #include <kernel >2 #include <monitor >3 #include <thread >4 #include <time >1 #include <kernel.hfa> 2 #include <monitor.hfa> 3 #include <thread.hfa> 4 #include <time.hfa> 5 5 6 6 #define __kick_rate 75000ul -
tests/preempt_longrun/processor.c
rfb975a50 r455a7d5 1 #include <kernel >2 #include <thread >3 #include <time >1 #include <kernel.hfa> 2 #include <thread.hfa> 3 #include <time.hfa> 4 4 5 5 #include <unistd.h> -
tests/preempt_longrun/stack.c
rfb975a50 r455a7d5 1 #include <kernel >2 #include <math >3 #include <thread >4 #include <time >1 #include <kernel.hfa> 2 #include <math.hfa> 3 #include <thread.hfa> 4 #include <time.hfa> 5 5 6 6 #define __kick_rate 5000000ul -
tests/preempt_longrun/yield.c
rfb975a50 r455a7d5 1 #include <kernel >2 #include <thread >3 #include <time >1 #include <kernel.hfa> 2 #include <thread.hfa> 3 #include <time.hfa> 4 4 5 5 #define __kick_rate 550000ul
Note:
See TracChangeset
for help on using the changeset viewer.