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() {
|
2016-08-13 21:59:21 +00:00
|
|
|
new_ucmd().args(&["-G", "-R", "input"])
|
|
|
|
.succeeds().stdout_only_fixture("gnu_ext_disabled_roff_no_ref.expected");
|
2015-05-30 07:34:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gnu_ext_disabled_roff_input_ref() {
|
2016-08-13 21:59:21 +00:00
|
|
|
new_ucmd().args(&["-G", "-r", "-R", "input"])
|
|
|
|
.succeeds().stdout_only_fixture("gnu_ext_disabled_roff_input_ref.expected");
|
2015-05-30 07:34:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gnu_ext_disabled_roff_auto_ref() {
|
2016-08-13 21:59:21 +00:00
|
|
|
new_ucmd().args(&["-G", "-A", "-R", "input"])
|
|
|
|
.succeeds().stdout_only_fixture("gnu_ext_disabled_roff_auto_ref.expected");
|
2015-05-30 07:34:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gnu_ext_disabled_tex_no_ref() {
|
2016-08-13 21:59:21 +00:00
|
|
|
new_ucmd().args(&["-G", "-T", "-R", "input"])
|
|
|
|
.succeeds().stdout_only_fixture("gnu_ext_disabled_tex_no_ref.expected");
|
2015-05-30 07:34:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gnu_ext_disabled_tex_input_ref() {
|
2016-08-13 21:59:21 +00:00
|
|
|
new_ucmd().args(&["-G", "-T", "-r", "-R", "input"])
|
|
|
|
.succeeds().stdout_only_fixture("gnu_ext_disabled_tex_input_ref.expected");
|
2015-05-30 07:34:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gnu_ext_disabled_tex_auto_ref() {
|
2016-08-13 21:59:21 +00:00
|
|
|
new_ucmd().args(&["-G", "-T", "-A", "-R", "input"])
|
|
|
|
.succeeds().stdout_only_fixture("gnu_ext_disabled_tex_auto_ref.expected");
|
2015-05-30 07:34:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn gnu_ext_disabled_ignore_and_only_file() {
|
2016-08-13 21:59:21 +00:00
|
|
|
new_ucmd().args(&["-G", "-o", "only", "-i", "ignore", "input"])
|
|
|
|
.succeeds().stdout_only_fixture("gnu_ext_disabled_ignore_and_only_file.expected");
|
2015-06-05 23:55:02 +00:00
|
|
|
}
|