mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
392bfc6bd3
The test fails on Windows with the diff - = help: to create the module `unknown`, create file "unknown.rs" or "unknown/mod.rs" + = help: to create the module `unknown`, create file "unknown.rs" or "unknown\mod.rs" There is no need to run this test on Windows, so ignore it.
16 lines
531 B
Makefile
16 lines
531 B
Makefile
# ignore-windows
|
|
|
|
include ../tools.mk
|
|
|
|
all:
|
|
echo 'mod unknown;' | $(RUSTC) --crate-type rlib - >$(TMPDIR)/unknown-mod.stdout 2>$(TMPDIR)/unknown-mod.stderr || echo "failed successfully"
|
|
|
|
# Bless like this: RUSTC_BLESS_TEST=1 ./x.py test tests/run-make/unknown-mod-stdin
|
|
ifdef RUSTC_BLESS_TEST
|
|
cp "$(TMPDIR)"/unknown-mod.stdout unknown-mod.stdout
|
|
cp "$(TMPDIR)"/unknown-mod.stderr unknown-mod.stderr
|
|
else
|
|
$(DIFF) unknown-mod.stdout "$(TMPDIR)"/unknown-mod.stdout
|
|
$(DIFF) unknown-mod.stderr "$(TMPDIR)"/unknown-mod.stderr
|
|
endif
|