Eclipse Titan is an open-source implementation of TTCN-3 compilation and execution environment. TTCN-3 is a modular language specifically designed for testing, standardized by ETSI, and endorsed by ITU.
15 lines
448 B
Plaintext
15 lines
448 B
Plaintext
--- help/ttcn3_help.orig 2025-05-28 08:04:59 UTC
|
|
+++ help/ttcn3_help
|
|
@@ -32,7 +32,10 @@ if test "${TTCN3_DIR}" = ""
|
|
|
|
# check for necessary environment variables
|
|
if test "${TTCN3_DIR}" = ""
|
|
-then echo "Error: TTCN3_DIR environment variable is not set"; exit 1;
|
|
+then if test -d "%%TTCN3_DIR%%"
|
|
+ then TTCN3_DIR=%%TTCN3_DIR%%
|
|
+ else echo "Error: TTCN3_DIR environment variable is not set"; exit 1;
|
|
+ fi
|
|
fi
|
|
|
|
# file extension for help files
|