6 lines
176 B
Bash
6 lines
176 B
Bash
|
#!/bin/bash
|
||
|
echo "This is an independent test. It does not depend on other tests."
|
||
|
echo "Environment file check: TEST_VAR from environment file is set to: $TEST_VAR"
|
||
|
|
||
|
exit $?
|