From bead8190705df3993d331b8310ca9cfffd2552ab Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Mon, 23 May 2022 11:37:00 -0400 Subject: [PATCH] changes missing from the previous commit --- unittest/formats/compressed_dump_test.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unittest/formats/compressed_dump_test.h b/unittest/formats/compressed_dump_test.h index 9b2dbc905b..d9803005e5 100644 --- a/unittest/formats/compressed_dump_test.h +++ b/unittest/formats/compressed_dump_test.h @@ -19,7 +19,7 @@ extern const char *COMPRESS_SUFFIX; extern const char *COMPRESS_EXTENSION; -extern char *COMPRESS_BINARY; +extern char *COMPRESS_EXECUTABLE; class CompressedDumpTest : public MeltTest { protected: @@ -102,7 +102,7 @@ public: BEGIN_HIDE_OUTPUT(); std::string converted_file = compressed_file.substr(0, compressed_file.find_last_of('.')); std::string cmdline = - fmt::format("{} -d -c {} > {}", COMPRESS_BINARY, compressed_file, converted_file); + fmt::format("{} -d -c {} > {}", COMPRESS_EXECUTABLE, compressed_file, converted_file); system(cmdline.c_str()); END_HIDE_OUTPUT(); return converted_file;