We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae7dce1 commit eda96ddCopy full SHA for eda96dd
tests/support/set_executable_path.tcl
@@ -10,6 +10,12 @@ set ::VALKEY_PROG_SUFFIX [expr {
10
[info exists ::env(VALKEY_PROG_SUFFIX)] ? $::env(VALKEY_PROG_SUFFIX) : ""
11
}]
12
13
+# Optional program suffix (e.g. `make PROG_SUFFIX=-alt` will create binary valkey-server-alt).
14
+# Passed from `make test` as environment variable VALKEY_PROG_SUFFIX.
15
+set ::VALKEY_PROG_SUFFIX [expr {
16
+ [info exists ::env(VALKEY_PROG_SUFFIX)] ? $::env(VALKEY_PROG_SUFFIX) : ""
17
+}]
18
+
19
# Helper to build absolute paths
20
proc valkey_bin_absolute_path {name} {
21
set full_name "${name}${::VALKEY_PROG_SUFFIX}"
0 commit comments