We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7437aff commit 995b6abCopy full SHA for 995b6ab
1 file changed
tests/executable.rs
@@ -883,3 +883,18 @@ fn extra_search_paths() {
883
);
884
error_or_panic(&output);
885
}
886
+
887
+/// -X in non-initial position fails
888
+#[test]
889
+fn bad_v2_position() {
890
+ let output = run_tectonic(&PathBuf::from("."), &["-", "-X"]);
891
+ error_or_panic(&output);
892
+}
893
894
+#[cfg(feature = "serialization")]
895
896
+fn bad_v2_position_build() {
897
+ let (_tempdir, temppath) = setup_v2();
898
+ let output = run_tectonic(&temppath, &["build", "-X"]);
899
900
0 commit comments