Makefile.am 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # StarPU --- Runtime system for heterogeneous multicore architectures.
  2. #
  3. # Copyright (C) 2017-2020 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
  4. #
  5. # StarPU is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU Lesser General Public License as published by
  7. # the Free Software Foundation; either version 2.1 of the License, or (at
  8. # your option) any later version.
  9. #
  10. # StarPU is distributed in the hope that it will be useful, but
  11. # WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. #
  14. # See the GNU Lesser General Public License in COPYING.LGPL for more details.
  15. #
  16. include $(top_srcdir)/starpu.mk
  17. EXTRA_DIST = \
  18. platform.xml \
  19. prio_list.sh \
  20. barrier.sh \
  21. starpu-mc.sh.in
  22. AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top_builddir)/include -I$(top_srcdir)/include $(SIMGRID_CFLAGS)
  23. AM_LDFLAGS = -Wl,-znorelro -Wl,-znoseparate-code
  24. noinst_PROGRAMS = \
  25. prio_list \
  26. prio_list2 \
  27. starpu_barrier
  28. if !STARPU_QUICK_CHECK
  29. SHELL_TESTS = prio_list.sh
  30. #SHELL_TESTS += barrier.sh
  31. endif
  32. MC_FLAGS=--cfg=model-check/reduction:none
  33. #MC_FLAGS+=--cfg=contexts/factory:ucontext
  34. #MC_FLAGS+=--cfg=model-check/sparse-checkpoint:yes
  35. #MC_FLAGS+=--cfg=model-check/visited:1000
  36. # To record the failing trace
  37. #MC_FLAGS+=--cfg=model-check/record:1
  38. ## And replay it without simgrid-mc
  39. #MC_FLAGS+=--cfg=model-check/reply:'1;3;4'
  40. # To see which simix calls are made
  41. #MC_FLAGS+=--log=simix_popping.thres:debug
  42. test: prio_list
  43. simgrid-mc ./prio_list platform.xml MAIN $(MC_FLAGS)
  44. debug: prio_list
  45. simgrid-mc ./prio_list platform.xml MAIN --log=mc_safety.thres:debug $(MC_FLAGS)
  46. test-barrier: starpu_barrier
  47. simgrid-mc ./starpu_barrier platform.xml MAIN $(MC_FLAGS)
  48. debug-barrier: starpu_barrier
  49. simgrid-mc ./starpu_barrier platform.xml MAIN --log=mc_safety.thres:debug $(MC_FLAGS)