In order to make packaging easier (see issue #140), create a small wrapper program that is in all respects identical to atest. The idea is to phase out atest, but for now we'll have the two side to side to avoid breakage of people using the old launcher.
Signed-off-by: Lucas Meneghel Rodrigues <[email protected]> --- cli/autotest-rpc-client | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) create mode 100755 cli/autotest-rpc-client diff --git a/cli/autotest-rpc-client b/cli/autotest-rpc-client new file mode 100755 index 0000000..8386920 --- /dev/null +++ b/cli/autotest-rpc-client @@ -0,0 +1,8 @@ +#!/usr/bin/python -u + +import sys +import common +from autotest_lib.cli import atest + + +sys.exit(atest.main()) -- 1.7.7.5 _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
