File tree Expand file tree Collapse file tree
tools/make/lib/test-fixtures Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+
2+ # TARGETS #
3+
4+ # Run fixture runners.
5+ #
6+ # This target runs scripts written in Julia to generate test fixtures. Note that we assume the scripts can be run using Julia.
7+
8+ test-fixtures-julia :
9+ $(QUIET ) $(FIND_JULIA_TESTS_FIXTURES_CMD ) | grep ' ^[\/]\|^[a-zA-Z]:[/\]' | while read -r file; do \
10+ echo " " ; \
11+ echo " Generating test fixtures: $$ file" ; \
12+ $(MAKE_EXECUTABLE ) $$ file && $$ file || exit 1; \
13+ done
14+
15+ .PHONY : test-fixtures-julia
16+
17+
18+ # Run fixture runners.
19+ #
20+ # This target runs a list of scripts written in Julia to generate fixtures. Note that we assume the scripts can be run using Julia.
21+
22+ test-fixtures-julia-files :
23+ $(QUIET ) for file in $( FILES) ; do \
24+ echo " " ; \
25+ echo " Generating test fixtures: $$ file" ; \
26+ $(MAKE_EXECUTABLE ) $$ file && $$ file || exit 1; \
27+ done
28+
29+ .PHONY : test-fixtures-julia-files
You can’t perform that action at this time.
0 commit comments