Skip to content

Commit 1bf957d

Browse files
committed
---
yaml --- r: 155310 b: refs/heads/try2 c: 9b49ad2 h: refs/heads/master v: v3
1 parent a1e6b89 commit 1bf957d

File tree

293 files changed

+3314
-7493
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

293 files changed

+3314
-7493
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: eeda1b87ff9dd2902f6d58c83d384775b90e3734
8+
refs/heads/try2: 9b49ad238db64f66d66a1a6e9c26198abe56cc53
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/configure

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ case $CFG_OSTYPE in
306306
# instead, msys defines $MSYSTEM which is MINGW32 on i686 and
307307
# MINGW64 on x86_64.
308308
CFG_CPUTYPE=i686
309-
CFG_OSTYPE=w64-mingw32
309+
CFG_OSTYPE=pc-mingw32
310310
if [ "$MSYSTEM" = MINGW64 ]
311311
then
312312
CFG_CPUTYPE=x86_64
@@ -453,8 +453,6 @@ valopt datadir "${CFG_PREFIX}/share" "install data"
453453
valopt infodir "${CFG_PREFIX}/share/info" "install additional info"
454454
valopt mandir "${CFG_PREFIX}/share/man" "install man pages in PATH"
455455

456-
valopt release-channel "source" "the name of the release channel to build"
457-
458456
# On windows we just store the libraries in the bin directory because
459457
# there's no rpath. This is where the build system itself puts libraries;
460458
# --libdir is used to configure the installation directory.
@@ -477,22 +475,11 @@ fi
477475
step_msg "validating $CFG_SELF args"
478476
validate_opt
479477

480-
# Validate the release channel
481-
case "$CFG_RELEASE_CHANNEL" in
482-
(source | nightly | beta | stable)
483-
;;
484-
(*)
485-
err "release channel must be 'source', 'nightly', 'beta' or 'stable'"
486-
;;
487-
esac
488-
489-
# Continue supporting the old --enable-nightly flag to transition the bots
478+
# Temporarily support the old windows triples while the bots make the transition
490479
# XXX Remove me
491-
if [ $CFG_ENABLE_NIGHTLY -eq 1 ]
492-
then
493-
CFG_RELEASE_CHANNEL=nightly
494-
putvar CFG_RELEASE_CHANNEL
495-
fi
480+
CFG_BUILD=`echo "${CFG_BUILD}" | sed 's/-pc-mingw32/-w64-mingw32/g'`
481+
CFG_HOST=`echo "${CFG_HOST}" | sed 's/-pc-mingw32/-w64-mingw32/g'`
482+
CFG_TARGET=`echo "${CFG_TARGET}" | sed 's/-pc-mingw32/-w64-mingw32/g'`
496483

497484
step_msg "looking for build programs"
498485

@@ -649,7 +636,7 @@ then
649636
# check that gcc, cc and g++ all point to the same compiler.
650637
# note that for xcode 5, g++ points to clang, not clang++
651638
if !((chk_cc gcc clang && chk_cc g++ clang) ||
652-
(chk_cc gcc gcc &&( chk_cc g++ g++ || chk g++ gcc))); then
639+
(chk_cc gcc gcc &&( chk_cc g++ g++ || chk g++ gcc))) then
653640
err "the gcc and g++ in your path point to different compilers.
654641
Check which versions are in your path with gcc --version and g++ --version.
655642
To resolve this problem, either fix your PATH or run configure with --enable-clang"

branches/try2/man/rustc.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH RUSTC "1" "March 2014" "rustc 0.12.0" "User Commands"
1+
.TH RUSTC "1" "March 2014" "rustc 0.12.0-pre" "User Commands"
22
.SH NAME
33
rustc \- The Rust compiler
44
.SH SYNOPSIS

branches/try2/man/rustdoc.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH RUSTDOC "1" "March 2014" "rustdoc 0.12.0" "User Commands"
1+
.TH RUSTDOC "1" "March 2014" "rustdoc 0.12.0-pre" "User Commands"
22
.SH NAME
33
rustdoc \- generate documentation from Rust source code
44
.SH SYNOPSIS

branches/try2/mk/main.mk

Lines changed: 11 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,22 @@
1414

1515
# The version number
1616
CFG_RELEASE_NUM=0.12.0
17+
CFG_RELEASE_LABEL=-pre
1718

1819
CFG_FILENAME_EXTRA=4e7c5e5c
1920

20-
ifeq ($(CFG_RELEASE_CHANNEL),stable)
21-
# This is the normal semver version string, e.g. "0.12.0", "0.12.0-nightly"
22-
CFG_RELEASE=$(CFG_RELEASE_NUM)
23-
# This is the string used in dist artifact file names, e.g. "0.12.0", "nightly"
24-
CFG_PACKAGE_VERS=$(CFG_RELEASE_NUM)
25-
endif
26-
ifeq ($(CFG_RELEASE_CHANNEL),beta)
27-
CFG_RELEASE=$(CFG_RELEASE_NUM)-beta
28-
# When building beta/nightly distributables just reuse the same "beta"
29-
# name so when we upload we'll always override the previous
30-
# nighly. This doesn't actually impact the version reported by rustc -
31-
# it's just for file naming.
32-
CFG_PACKAGE_VERS=beta
33-
endif
34-
ifeq ($(CFG_RELEASE_CHANNEL),nightly)
35-
CFG_RELEASE=$(CFG_RELEASE_NUM)-nightly
21+
ifndef CFG_ENABLE_NIGHTLY
22+
# This is the normal version string
23+
CFG_RELEASE=$(CFG_RELEASE_NUM)$(CFG_RELEASE_LABEL)
24+
CFG_PACKAGE_VERS=$(CFG_RELEASE)
25+
else
26+
# Modify the version label for nightly builds
27+
CFG_RELEASE=$(CFG_RELEASE_NUM)$(CFG_RELEASE_LABEL)-nightly
28+
# When building nightly distributables just reuse the same "rust-nightly" name
29+
# so when we upload we'll always override the previous nighly. This doesn't actually
30+
# impact the version reported by rustc - it's just for file naming.
3631
CFG_PACKAGE_VERS=nightly
3732
endif
38-
ifeq ($(CFG_RELEASE_CHANNEL),source)
39-
CFG_RELEASE=$(CFG_RELEASE_NUM)-pre
40-
CFG_PACKAGE_VERS=$(CFG_RELEASE_NUM)-pre
41-
endif
42-
4333
# The name of the package to use for creating tarballs, installers etc.
4434
CFG_PACKAGE_NAME=rust-$(CFG_PACKAGE_VERS)
4535

branches/try2/mk/tests.mk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,9 @@ check-ref: cleantestlibs cleantmptestlogs check-stage2-rpass \
194194
check-docs: cleantestlibs cleantmptestlogs check-stage2-docs
195195
$(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log
196196

197+
# NOTE: Remove after reprogramming windows bots
198+
check-fast: check-lite
199+
197200
# Some less critical tests that are not prone to breakage.
198201
# Not run as part of the normal test suite, but tested by bors on checkin.
199202
check-secondary: check-lexer check-pretty

branches/try2/src/compiletest/header.rs

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ pub struct TestProps {
4242
pub pretty_mode: String,
4343
// Only compare pretty output and don't try compiling
4444
pub pretty_compare_only: bool,
45-
// Patterns which must not appear in the output of a cfail test.
46-
pub forbid_output: Vec<String>,
4745
}
4846

4947
// Load any test directives embedded in the file
@@ -61,7 +59,6 @@ pub fn load_props(testfile: &Path) -> TestProps {
6159
let mut no_pretty_expanded = false;
6260
let mut pretty_mode = None;
6361
let mut pretty_compare_only = false;
64-
let mut forbid_output = Vec::new();
6562
iter_header(testfile, |ln| {
6663
match parse_error_pattern(ln) {
6764
Some(ep) => error_patterns.push(ep),
@@ -119,11 +116,6 @@ pub fn load_props(testfile: &Path) -> TestProps {
119116
None => ()
120117
};
121118

122-
match parse_forbid_output(ln) {
123-
Some(of) => forbid_output.push(of),
124-
None => (),
125-
}
126-
127119
true
128120
});
129121

@@ -140,8 +132,7 @@ pub fn load_props(testfile: &Path) -> TestProps {
140132
no_prefer_dynamic: no_prefer_dynamic,
141133
no_pretty_expanded: no_pretty_expanded,
142134
pretty_mode: pretty_mode.unwrap_or("normal".to_string()),
143-
pretty_compare_only: pretty_compare_only,
144-
forbid_output: forbid_output,
135+
pretty_compare_only: pretty_compare_only
145136
}
146137
}
147138

@@ -219,10 +210,6 @@ fn parse_error_pattern(line: &str) -> Option<String> {
219210
parse_name_value_directive(line, "error-pattern")
220211
}
221212

222-
fn parse_forbid_output(line: &str) -> Option<String> {
223-
parse_name_value_directive(line, "forbid-output")
224-
}
225-
226213
fn parse_aux_build(line: &str) -> Option<String> {
227214
parse_name_value_directive(line, "aux-build")
228215
}

0 commit comments

Comments
 (0)