File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -62,25 +62,25 @@ runs:
62
62
cd test;
63
63
mkdir -p ./project/lib;
64
64
cp ../target/debug/libgdnative_test.so ./project/lib/;
65
- ${GODOT_BIN} --path ./project/ > >(tee "${{ runner.temp }}/stdout.log") 2> >(tee "${{ runner.temp }}/stderr.log");
65
+ ${GODOT_BIN} --verbose -- path ./project/ > >(tee "${{ runner.temp }}/stdout.log") 2> >(tee "${{ runner.temp }}/stderr.log");
66
66
bash ../tools/check-test-output.sh "${{ runner.temp }}/stdout.log" "${{ runner.temp }}/stderr.log";
67
67
if [[ $? -ne 0 ]]; then
68
68
exit 1;
69
69
fi;
70
- ${GODOT_BIN} -e --path ./project/ --run-editor-tests > >(tee "${{ runner.temp }}/stdout.log") 2> >(tee "${{ runner.temp }}/stderr.log");
70
+ ${GODOT_BIN} --verbose - e --path ./project/ --run-editor-tests > >(tee "${{ runner.temp }}/stdout.log") 2> >(tee "${{ runner.temp }}/stderr.log");
71
71
bash ../tools/check-test-output.sh "${{ runner.temp }}/stdout.log" "${{ runner.temp }}/stderr.log";
72
72
if [[ $? -ne 0 ]]; then
73
73
exit 1;
74
74
fi;
75
75
cargo build --features type-tag-fallback ${{ inputs.rust_extra_args }}
76
76
mkdir -p ./project/lib;
77
77
cp ../target/debug/libgdnative_test.so ./project/lib/;
78
- ${GODOT_BIN} --path ./project/ > >(tee "${{ runner.temp }}/stdout.log") 2> >(tee "${{ runner.temp }}/stderr.log");
78
+ ${GODOT_BIN} --verbose -- path ./project/ > >(tee "${{ runner.temp }}/stdout.log") 2> >(tee "${{ runner.temp }}/stderr.log");
79
79
bash ../tools/check-test-output.sh "${{ runner.temp }}/stdout.log" "${{ runner.temp }}/stderr.log";
80
80
if [[ $? -ne 0 ]]; then
81
81
exit 1;
82
82
fi;
83
- ${GODOT_BIN} -e --path ./project/ --run-editor-tests > >(tee "${{ runner.temp }}/stdout.log") 2> >(tee "${{ runner.temp }}/stderr.log");
83
+ ${GODOT_BIN} --verbose - e --path ./project/ --run-editor-tests > >(tee "${{ runner.temp }}/stdout.log") 2> >(tee "${{ runner.temp }}/stderr.log");
84
84
bash ../tools/check-test-output.sh "${{ runner.temp }}/stdout.log" "${{ runner.temp }}/stderr.log";
85
85
if [[ $? -ne 0 ]]; then
86
86
exit 1;
Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ godot_itest! {
104
104
// Should not panic due to conversion failure
105
105
let option = node. get_node( "does not exist" ) ;
106
106
assert!( option. is_none( ) ) ;
107
+ node. free( ) ;
107
108
}
108
109
}
109
110
You can’t perform that action at this time.
0 commit comments