diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-09-22 09:09:15 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-09-22 09:09:15 -0700 |
| commit | c111db166f0635bacaccc40c65c8c4e1343f2069 (patch) | |
| tree | 513aa467a6f1d18b5cefbfcf980c83c4a7208697 /src/test/auxiliary | |
| parent | 3907a13f697feb007ab4824ee26f998d56a1311f (diff) | |
| download | rust-c111db166f0635bacaccc40c65c8c4e1343f2069.tar.gz rust-c111db166f0635bacaccc40c65c8c4e1343f2069.zip | |
Fix snapshot builders
The test in question does not pass when cross compiling because the syntax extension must always be compiled for the host, not the target.
Diffstat (limited to 'src/test/auxiliary')
| -rw-r--r-- | src/test/auxiliary/issue_16723_multiple_items_syntax_ext.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/auxiliary/issue_16723_multiple_items_syntax_ext.rs b/src/test/auxiliary/issue_16723_multiple_items_syntax_ext.rs index 269afea52c2..ee5bc55b3fd 100644 --- a/src/test/auxiliary/issue_16723_multiple_items_syntax_ext.rs +++ b/src/test/auxiliary/issue_16723_multiple_items_syntax_ext.rs @@ -7,8 +7,10 @@ // <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. -// + // ignore-stage1 +// force-host + #![feature(plugin_registrar, managed_boxes, quote)] #![crate_type = "dylib"] |
