浏览代码

Add missing tests in non-simgrid mode

Samuel Thibault 8 年之前
父节点
当前提交
b70d87af27
共有 2 个文件被更改,包括 5 次插入4 次删除
  1. 3 2
      examples/Makefile.am
  2. 2 2
      tests/Makefile.am

+ 3 - 2
examples/Makefile.am

@@ -184,11 +184,12 @@ endif
 # see for instance mandelbrot/mandelbrot
 
 STARPU_EXAMPLES =
-if STARPU_SIMGRID
+
 STARPU_EXAMPLES +=				\
 	sched_ctx/prio				\
 	worker_collections/worker_list_example
-else
+
+if !STARPU_SIMGRID
 STARPU_EXAMPLES +=				\
 	basic_examples/hello_world		\
 	basic_examples/vector_scal		\

+ 2 - 2
tests/Makefile.am

@@ -125,7 +125,6 @@ XFAIL_TESTS	=				\
 
 noinst_PROGRAMS =
 
-if STARPU_SIMGRID
 noinst_PROGRAMS +=				\
 	main/restart				\
 	main/execute_schedule			\
@@ -151,7 +150,8 @@ noinst_PROGRAMS +=				\
 	microbenchs/local_pingpong		\
 	sched_ctx/sched_ctx_list		\
 	perfmodels/value_nan
-else
+
+if !STARPU_SIMGRID
 noinst_PROGRAMS +=				\
 	main/deprecated_func			\
 	main/driver_api/init_run_deinit         \