-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'cooperative-computing-lab:master' into daskvine_priorit…
…y_scheduling_algorithm
- Loading branch information
Showing
4 changed files
with
283 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/bin/sh | ||
set -ex | ||
|
||
. ../../dttools/test/test_runner_common.sh | ||
|
||
import_config_val CCTOOLS_PYTHON_TEST_EXEC | ||
import_config_val CCTOOLS_PYTHON_TEST_DIR | ||
|
||
export PATH=$(pwd)/../src/worker:$(pwd)/../../batch_job/src:$PATH | ||
export PYTHONPATH=$(pwd)/../../test_support/python_modules/${CCTOOLS_PYTHON_TEST_DIR}:$PYTHONPATH | ||
|
||
check_needed() | ||
{ | ||
[ -n "${CCTOOLS_PYTHON_TEST_EXEC}" ] || return 1 | ||
} | ||
|
||
prepare() | ||
{ | ||
return 0 | ||
} | ||
|
||
run() | ||
{ | ||
# send taskvine to the background, saving its exit status. | ||
exec ${CCTOOLS_PYTHON_TEST_EXEC} vine_python_hungry.py | ||
} | ||
|
||
clean() | ||
{ | ||
rm -rf vine-run-info | ||
|
||
exit 0 | ||
} | ||
|
||
|
||
dispatch "$@" | ||
|
||
# vim: set noexpandtab tabstop=4: |
Oops, something went wrong.