Details
-
Bug
-
Resolution: Fixed
-
Major - P3
-
None
-
None
-
Fully Compatible
-
ALL
-
TIG 2018-1-15
Description
The work for SERVER-32121 uses the following check:
if [[ $resmoke_exit_code = 74 ]]; then
|
...
|
The [[ condition is not supported in dash, which is the default shell on Ubuntu. Suggested changes are:
- Change test to use [
- Set the shell to bash for "run tests"