Makefile.am 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # StarPU --- Runtime system for heterogeneous multicore architectures.
  2. #
  3. # Copyright (C) 2017-2021 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. LIBS += $(SIMGRID_LDFLAGS)
  25. noinst_PROGRAMS = \
  26. prio_list \
  27. prio_list2 \
  28. starpu_barrier
  29. if !STARPU_QUICK_CHECK
  30. SHELL_TESTS = prio_list.sh
  31. #SHELL_TESTS += barrier.sh
  32. endif
  33. MC_FLAGS=--cfg=model-check/reduction:none
  34. #MC_FLAGS+=--cfg=contexts/factory:ucontext
  35. #MC_FLAGS+=--cfg=model-check/sparse-checkpoint:yes
  36. #MC_FLAGS+=--cfg=model-check/visited:1000
  37. # To record the failing trace
  38. #MC_FLAGS+=--cfg=model-check/record:1
  39. ## And replay it without simgrid-mc
  40. #MC_FLAGS+=--cfg=model-check/reply:'1;3;4'
  41. # To see which simix calls are made
  42. #MC_FLAGS+=--log=simix_popping.thres:debug
  43. test: prio_list
  44. simgrid-mc ./prio_list platform.xml MAIN $(MC_FLAGS)
  45. debug: prio_list
  46. simgrid-mc ./prio_list platform.xml MAIN --log=mc_safety.thres:debug $(MC_FLAGS)
  47. test-barrier: starpu_barrier
  48. simgrid-mc ./starpu_barrier platform.xml MAIN $(MC_FLAGS)
  49. debug-barrier: starpu_barrier
  50. simgrid-mc ./starpu_barrier platform.xml MAIN --log=mc_safety.thres:debug $(MC_FLAGS)