diff options
| author | Richo Healey <richo@psych0tik.net> | 2015-03-08 18:54:59 -0700 |
|---|---|---|
| committer | Richo Healey <richo@psych0tik.net> | 2015-03-08 22:21:59 -0700 |
| commit | 0487ad91193057cfcf109e4efa7bef6b00944e2b (patch) | |
| tree | 270185c513e3abe4ec8663850724c01470d976a8 | |
| parent | 8ac528bed1cc30eabe26a5acc345acd9cbcf7198 (diff) | |
| download | rust-0487ad91193057cfcf109e4efa7bef6b00944e2b.tar.gz rust-0487ad91193057cfcf109e4efa7bef6b00944e2b.zip | |
Add a test for a bare outfile param to rustc
| -rw-r--r-- | src/test/run-make/bare-outfile/Makefile | 4 | ||||
| -rw-r--r-- | src/test/run-make/bare-outfile/foo.rs | 12 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/test/run-make/bare-outfile/Makefile b/src/test/run-make/bare-outfile/Makefile new file mode 100644 index 00000000000..e6cd3851e03 --- /dev/null +++ b/src/test/run-make/bare-outfile/Makefile @@ -0,0 +1,4 @@ +-include ../tools.mk + +all: + rustc -o foo foo.rs diff --git a/src/test/run-make/bare-outfile/foo.rs b/src/test/run-make/bare-outfile/foo.rs new file mode 100644 index 00000000000..63e747901ae --- /dev/null +++ b/src/test/run-make/bare-outfile/foo.rs @@ -0,0 +1,12 @@ +// Copyright 2015 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +fn main() { +} |
