Skip to content

Commit e393ac9

Browse files
committed
---
yaml --- r: 39550 b: refs/heads/incoming c: 3ee1d3e h: refs/heads/master v: v3
1 parent 55afceb commit e393ac9

File tree

5 files changed

+14
-2
lines changed

5 files changed

+14
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278
9-
refs/heads/incoming: 6c056976678e103f23fd29557174d7718b75a617
9+
refs/heads/incoming: 3ee1d3ebb81de199fc630a86933ac18c0a869482
1010
refs/heads/dist-snap: 22efa39382d41b084fde1719df7ae8ce5697d8c9
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/src/libcargo/pgp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ fn verify(root: &Path, data: &Path, sig: &Path) -> bool {
102102
let path = root.push("gpg");
103103
let res = gpgv(~[~"--homedir", path.to_str(),
104104
~"--keyring", ~"pubring.gpg",
105-
~"--verify",
105+
~"--verbose",
106106
sig.to_str(), data.to_str()]);
107107
if res.status != 0 {
108108
return false;

branches/incoming/src/librusti/rusti.rc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,9 @@ fn run(repl: Repl, input: ~str) -> Repl {
246246
debug!("loop checking");
247247
middle::check_loop::check_crate(ty_cx, crate);
248248

249+
debug!("mode computation");
250+
middle::mode::compute_modes(ty_cx, method_map, crate);
251+
249252
debug!("alt checking");
250253
middle::check_alt::check_crate(ty_cx, method_map, crate);
251254

branches/incoming/src/libstd/time.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1170,6 +1170,7 @@ mod tests {
11701170
}
11711171

11721172
#[test]
1173+
#[ignore(reason = "randomred")]
11731174
fn test_ctime() {
11741175
os::setenv(~"TZ", ~"America/Los_Angeles");
11751176
tzset();
@@ -1185,6 +1186,7 @@ mod tests {
11851186
}
11861187

11871188
#[test]
1189+
#[ignore(reason = "randomred")]
11881190
fn test_strftime() {
11891191
os::setenv(~"TZ", ~"America/Los_Angeles");
11901192
tzset();

branches/incoming/src/rustllvm/RustWrapper.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,13 @@ void *RustMCJITMemoryManager::getPointerToNamedFunction(const std::string &Name,
290290
void *Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr);
291291
if (Ptr) return Ptr;
292292

293+
// If it wasn't found and if it starts with an underscore ('_') character,
294+
// try again without the underscore.
295+
if (NameStr[0] == '_') {
296+
Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr+1);
297+
if (Ptr) return Ptr;
298+
}
299+
293300
if (AbortOnFailure)
294301
report_fatal_error("Program used external function '" + Name +
295302
"' which could not be resolved!");

0 commit comments

Comments
 (0)