Makefile.am 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. EXTRA_DIST = \
  17. platform.xml \
  18. prio_list.sh \
  19. barrier.sh \
  20. starpu-mc.sh.in
  21. AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top_builddir)/include -I$(top_srcdir)/include $(SIMGRID_CFLAGS)
  22. AM_LDFLAGS = -Wl,-znorelro -Wl,-znoseparate-code
  23. noinst_PROGRAMS = \
  24. prio_list \
  25. prio_list2 \
  26. starpu_barrier
  27. if !STARPU_QUICK_CHECK
  28. SHELL_TESTS = prio_list.sh
  29. #SHELL_TESTS += barrier.sh
  30. endif
  31. MC_FLAGS=--cfg=model-check/reduction:none
  32. #MC_FLAGS+=--cfg=contexts/factory:ucontext
  33. #MC_FLAGS+=--cfg=model-check/sparse-checkpoint:yes
  34. #MC_FLAGS+=--cfg=model-check/visited:1000
  35. # To record the failing trace
  36. #MC_FLAGS+=--cfg=model-check/record:1
  37. ## And replay it without simgrid-mc
  38. #MC_FLAGS+=--cfg=model-check/reply:'1;3;4'
  39. # To see which simix calls are made
  40. #MC_FLAGS+=--log=simix_popping.thres:debug
  41. test: prio_list
  42. simgrid-mc ./prio_list platform.xml MAIN $(MC_FLAGS)
  43. debug: prio_list
  44. simgrid-mc ./prio_list platform.xml MAIN --log=mc_safety.thres:debug $(MC_FLAGS)
  45. test-barrier: starpu_barrier
  46. simgrid-mc ./starpu_barrier platform.xml MAIN $(MC_FLAGS)
  47. debug-barrier: starpu_barrier
  48. simgrid-mc ./starpu_barrier platform.xml MAIN --log=mc_safety.thres:debug $(MC_FLAGS)