print dot after errors, fix tests (#1408)
This commit is contained in:
@@ -28,8 +28,10 @@ write_error(Error) :-
|
|||||||
),
|
),
|
||||||
( nonvar(Error),
|
( nonvar(Error),
|
||||||
functor(Error, error, 2) ->
|
functor(Error, error, 2) ->
|
||||||
writeq(Error)
|
writeq(Error),
|
||||||
; writeq(throw(Error))
|
write('.')
|
||||||
|
; writeq(throw(Error)),
|
||||||
|
write('.')
|
||||||
).
|
).
|
||||||
|
|
||||||
'$print_message_and_fail'(Error) :-
|
'$print_message_and_fail'(Error) :-
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ fn do_not_duplicate_path_components() {
|
|||||||
['tests-pl/issue852-throw_e.pl'].\n\
|
['tests-pl/issue852-throw_e.pl'].\n\
|
||||||
halt.\n\
|
halt.\n\
|
||||||
",
|
",
|
||||||
" throw(e)\n false.\n throw(e)\n false.\n",
|
" throw(e).\n false.\n throw(e).\n false.\n",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -165,6 +165,6 @@ fn ignored_constraint() {
|
|||||||
fn call_0() {
|
fn call_0() {
|
||||||
load_module_test(
|
load_module_test(
|
||||||
"tests-pl/issue831-call0.pl",
|
"tests-pl/issue831-call0.pl",
|
||||||
" error(existence_error(procedure,call/0),call/0)\n",
|
" error(existence_error(procedure,call/0),call/0).\n",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ fn hello_world() {
|
|||||||
fn syntax_error() {
|
fn syntax_error() {
|
||||||
load_module_test(
|
load_module_test(
|
||||||
"tests-pl/syntax_error.pl",
|
"tests-pl/syntax_error.pl",
|
||||||
" error(syntax_error(incomplete_reduction),read_term/3:6)\n",
|
" error(syntax_error(incomplete_reduction),read_term/3:6).\n",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user