We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4d633fc + b3f87b9 commit 8d99bf8Copy full SHA for 8d99bf8
run_rust_emacs_tests.sh
@@ -19,4 +19,14 @@ elif [ ! $(which "$EMACS") ]; then
19
exit 1
20
fi
21
22
+$( "$EMACS" -batch > /dev/null 2>&1 ) || {
23
+ echo "Your emacs command ($EMACS) does not run properly."
24
+ exit 2
25
+};
26
+
27
+$( "$EMACS" -batch --eval "(require 'ert)" > /dev/null 2>&1 ) || {
28
+ echo 'You must install the `ert` dependency; see README.md'
29
+ exit 3
30
31
32
"$EMACS" -batch -l rust-mode.el -l rust-mode-tests.el -f ert-run-tests-batch-and-exit
0 commit comments