summaryrefslogtreecommitdiff
path: root/test/unittest_core.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2023-09-26 15:01:03 +0100
committerGitHub <noreply@github.com>2023-09-26 16:01:03 +0200
commit71b8e77935bc9b0a3afc97d322037f2549165d2f (patch)
treea7e5e0cfec35b0ab30d6369d7b9ecd9eb3ddd48b /test/unittest_core.cxx
parent2bbdd4946561444fffba2bf047b0926a2cf9f5fe (diff)
FLUID: adds greatly enhanced Shell Commands (#774)
The user can add an arbitrary number of highly configurable shell commands through the setting panel. The commands can be saved as user preferences, inside the .fl file, or exported to an external file. Shell scripts can be limited to individual platforms, can have shortcut keys, etc. . * documentation will follow * support to call `fltk-config` will follow
Diffstat (limited to 'test/unittest_core.cxx')
-rw-r--r--test/unittest_core.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unittest_core.cxx b/test/unittest_core.cxx
index 6091dd7b4..ad60d172c 100644
--- a/test/unittest_core.cxx
+++ b/test/unittest_core.cxx
@@ -278,7 +278,7 @@ TEST(fl_filename, relative) {
r = fl_filename_relative("../foo.txt", base);
EXPECT_STREQ(r.c_str(), "../foo.txt");
return true;
- }
+}
TEST(fl_filename, absolute) {
Fl_String base = "/var/tmp/somedir";
@@ -293,6 +293,7 @@ TEST(fl_filename, absolute) {
return true;
}
+
bool cb1a_ok = false, cb1b_ok = false, cb1c_ok = false;
int cb1_alloc = 0;
class MyString : public Fl_String {