build/test/core_jamshell.py
Rene Rivera 85e5a2caa8 Port b2 tests to dual py2 and py3.
Now that the tests work in py2 or p3 we don't set py version in AP. This
allows for dealing with the AP images that don't have a way to set the
py version.
2019-03-31 15:37:03 -05:00

56 lines
1.2 KiB
Python

#!/usr/bin/python
# Copyright 2014 Steven Watanabe
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
import BoostBuild
import sys
t = BoostBuild.Tester(pass_toolset=False)
t.write("file.jam", """
actions run {
$(ACTION)
}
# Raw commands only work on Windows
if $(OS) = NT
{
JAMSHELL on test-raw = % ;
JAMSHELL on test-raw-fail = % ;
}
ACTION on test-raw = "\"$(PYTHON)\" -V" ;
run test-raw ;
ACTION on test-raw-fail = missing-executable ;
run test-raw-fail ;
# On Windows, the command is stored in a temporary
# file. On other systems it is passed directly.
if $(OS) = NT
{
JAMSHELL on test-py = $(PYTHON) ;
}
else
{
JAMSHELL on test-py = $(PYTHON) -c ;
}
ACTION on test-py = "
from __future__ import print_function
print(\\\",\\\".join([str(x) for x in range(3)]))
" ;
run test-py ;
DEPENDS all : test-raw test-raw-fail test-py ;
""")
t.run_build_system(["-ffile.jam", "-d1", "-sPYTHON=" + sys.executable], status=1)
t.expect_output_lines([
"...failed run test-raw-fail...",
"0,1,2",
"...failed updating 1 target...",
"...updated 2 targets..."])
t.cleanup()