We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71df251 commit 19c201aCopy full SHA for 19c201a
1 file changed
examples/cpp/Makefile
@@ -27,7 +27,7 @@ PROGRAMS = \
27
all: $(PROGRAMS)
28
29
test-examples: $(PROGRAMS)
30
- set -e && for i in $(PROGRAMS); do diff -u $${i}.output <(./$${i}); done
+ set -e && for i in $(PROGRAMS); do ./$${i} &> output; diff -u $${i}.output output; done; rm -f output
31
32
advanced-convolution-deprecated: advanced-convolution-deprecated.cpp
33
$(CXX) $(CXXFLAGS) $< $(LHAPDF_DEPS) $(PINEAPPL_DEPS) -o $@
0 commit comments