File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/statement Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ public Object execute(VirtualFrame frame) {
63
63
} catch (Throwable t ) {
64
64
if (!seenException ) {
65
65
CompilerDirectives .transferToInterpreterAndInvalidate ();
66
- seenException = true ;
66
+ seenException = true ;
67
67
}
68
68
69
69
if (PythonOptions .getOption (getContext (), CatchAllExceptions )) {
Original file line number Diff line number Diff line change 35
35
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36
36
# SOFTWARE.
37
37
38
+ #! /bin/bash
39
+
38
40
cd " $( dirname $0 ) "
39
41
cd ..
40
42
UNIT_TESTS_PATH=" graalpython/lib-python/3/test/test_*.py"
41
43
for TEST in ${UNIT_TESTS_PATH}
42
44
do
43
- echo " ------------------------------------------------------------------------------- "
45
+ echo " ----------------------------------------------------------------------"
44
46
echo " running: ${TEST} "
45
47
mx python3 ${TEST}
46
48
done
You can’t perform that action at this time.
0 commit comments