about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTamir Duberstein <tamird@gmail.com>2015-03-25 09:12:45 -0700
committerTamir Duberstein <tamird@gmail.com>2015-03-25 18:18:30 -0700
commit71386e5774244574045bdf6f837ddc31c5f6cc91 (patch)
tree9963c900e065d79f8e6ba982f87ef84afb89c4ba
parent27901849e07558639b8decc03707e0317ae8280e (diff)
downloadrust-71386e5774244574045bdf6f837ddc31c5f6cc91.tar.gz
rust-71386e5774244574045bdf6f837ddc31c5f6cc91.zip
Alphabetize
-rw-r--r--src/compiletest/util.rs32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/compiletest/util.rs b/src/compiletest/util.rs
index 2e11cf47d1e..52981d6d96b 100644
--- a/src/compiletest/util.rs
+++ b/src/compiletest/util.rs
@@ -13,33 +13,33 @@ use common::Config;
 
 /// Conversion table from triple OS name to Rust SYSNAME
 const OS_TABLE: &'static [(&'static str, &'static str)] = &[
-    ("mingw32", "windows"),
-    ("win32", "windows"),
-    ("windows", "windows"),
-    ("darwin", "macos"),
     ("android", "android"),
-    ("linux", "linux"),
-    ("freebsd", "freebsd"),
-    ("dragonfly", "dragonfly"),
     ("bitrig", "bitrig"),
+    ("darwin", "macos"),
+    ("dragonfly", "dragonfly"),
+    ("freebsd", "freebsd"),
+    ("linux", "linux"),
+    ("mingw32", "windows"),
     ("openbsd", "openbsd"),
+    ("win32", "windows"),
+    ("windows", "windows"),
 ];
 
 const ARCH_TABLE: &'static [(&'static str, &'static str)] = &[
-    ("i386", "x86"),
-    ("i686", "x86"),
+    ("aarch64", "aarch64"),
     ("amd64", "x86_64"),
-    ("x86_64", "x86_64"),
-    ("sparc", "sparc"),
-    ("powerpc", "powerpc"),
-    ("arm64", "aarch64"),
     ("arm", "arm"),
-    ("aarch64", "aarch64"),
+    ("arm64", "aarch64"),
+    ("hexagon", "hexagon"),
+    ("i386", "x86"),
+    ("i686", "x86"),
     ("mips", "mips"),
-    ("xcore", "xcore"),
     ("msp430", "msp430"),
-    ("hexagon", "hexagon"),
+    ("powerpc", "powerpc"),
     ("s390x", "systemz"),
+    ("sparc", "sparc"),
+    ("x86_64", "x86_64"),
+    ("xcore", "xcore"),
 ];
 
 pub fn get_os(triple: &str) -> &'static str {