2015-11-16 05:25:01 +00:00
|
|
|
use common::util::*;
|
2015-05-30 07:34:23 +00:00
|
|
|
|
2015-11-16 05:25:01 +00:00
|
|
|
static UTIL_NAME: &'static str = "ptx";
|
2016-07-29 21:26:32 +00:00
|
|
|
fn new_ucmd() -> UCommand {
|
|
|
|
TestScenario::new(UTIL_NAME).ucmd()
|
|
|
|
}
|
2015-05-30 07:34:23 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gnu_ext_disabled_roff_no_ref() {
|
|
|
|
let opts = vec!["-G", "-R"];
|
2015-06-05 23:55:02 +00:00
|
|
|
test_ptx(&opts, "gnu_ext_disabled_roff_no_ref.expected");
|
2015-05-30 07:34:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gnu_ext_disabled_roff_input_ref() {
|
|
|
|
let opts = vec!["-G", "-r", "-R"];
|
2015-06-05 23:55:02 +00:00
|
|
|
test_ptx(&opts, "gnu_ext_disabled_roff_input_ref.expected");
|
2015-05-30 07:34:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gnu_ext_disabled_roff_auto_ref() {
|
|
|
|
let opts = vec!["-G", "-A", "-R"];
|
2015-06-05 23:55:02 +00:00
|
|
|
test_ptx(&opts, "gnu_ext_disabled_roff_auto_ref.expected");
|
2015-05-30 07:34:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gnu_ext_disabled_tex_no_ref() {
|
|
|
|
let opts = vec!["-G", "-T", "-R"];
|
2015-06-05 23:55:02 +00:00
|
|
|
test_ptx(&opts, "gnu_ext_disabled_tex_no_ref.expected");
|
2015-05-30 07:34:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gnu_ext_disabled_tex_input_ref() {
|
|
|
|
let opts = vec!["-G", "-T", "-r", "-R"];
|
2015-06-05 23:55:02 +00:00
|
|
|
test_ptx(&opts, "gnu_ext_disabled_tex_input_ref.expected");
|
2015-05-30 07:34:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gnu_ext_disabled_tex_auto_ref() {
|
|
|
|
let opts = vec!["-G", "-T", "-A", "-R"];
|
2015-06-05 23:55:02 +00:00
|
|
|
test_ptx(&opts, "gnu_ext_disabled_tex_auto_ref.expected");
|
2015-05-30 07:34:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gnu_ext_disabled_ignore_and_only_file() {
|
|
|
|
let opts = vec!["-G", "-o", "only", "-i", "ignore"];
|
2015-06-05 23:55:02 +00:00
|
|
|
test_ptx(&opts, "gnu_ext_disabled_ignore_and_only_file.expected");
|
2015-05-30 07:34:23 +00:00
|
|
|
}
|
|
|
|
|
2015-06-05 23:55:02 +00:00
|
|
|
fn test_ptx(opts: &Vec<&str>, expected: &str) {
|
2016-07-29 21:26:32 +00:00
|
|
|
new_ucmd().args(opts).arg("input").succeeds().stdout_only_fixture(expected);
|
2015-06-05 23:55:02 +00:00
|
|
|
}
|