diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-03-30 11:55:44 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-03-30 12:16:05 +0200 |
commit | 8b517fae7eb229911a5d41bbe26fbf6cc7de46df (patch) | |
tree | 53b92af77065adb1f8d190ef25230896815fe17b /src | |
parent | dc0774cbdfaee5b81085596dbc686036ca9a2d51 (diff) |
build, refactor: Replace tabs with spaces
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.test.include | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 24e35c3824..b0b8eb3df6 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -386,17 +386,17 @@ endif %.cpp.test: %.cpp @echo Running tests: $$(\ - cat $< | \ - grep -E "(BOOST_FIXTURE_TEST_SUITE\\(|BOOST_AUTO_TEST_SUITE\\()" | \ - cut -d '(' -f 2 | cut -d ',' -f 1 | cut -d ')' -f 1) \ - from $< + cat $< | \ + grep -E "(BOOST_FIXTURE_TEST_SUITE\\(|BOOST_AUTO_TEST_SUITE\\()" | \ + cut -d '(' -f 2 | cut -d ',' -f 1 | cut -d ')' -f 1\ + ) from $< $(AM_V_at)export TEST_LOGFILE=$(abs_builddir)/$$(\ echo $< | grep -E -o "(wallet/test/.*\.cpp|test/.*\.cpp)" | $(SED) -e s/\.cpp/.log/ \ ) && \ $(TEST_BINARY) --catch_system_errors=no -l test_suite -t "$$(\ - cat $< | \ - grep -E "(BOOST_FIXTURE_TEST_SUITE\\(|BOOST_AUTO_TEST_SUITE\\()" | \ - cut -d '(' -f 2 | cut -d ',' -f 1 | cut -d ')' -f 1\ + cat $< | \ + grep -E "(BOOST_FIXTURE_TEST_SUITE\\(|BOOST_AUTO_TEST_SUITE\\()" | \ + cut -d '(' -f 2 | cut -d ',' -f 1 | cut -d ')' -f 1\ )" -- DEBUG_LOG_OUT > "$$TEST_LOGFILE" 2>&1 || (cat "$$TEST_LOGFILE" && false) %.json.h: %.json |