Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
c24fb12
duration div mul extras
newpavlov Jul 29, 2018
12d8f27
review update
newpavlov Jul 29, 2018
3e07236
add MAX_NANOS_F64 constant
newpavlov Jul 29, 2018
2c300fa
change negativity check
newpavlov Jul 30, 2018
2cab0de
don't duplicate impls
newpavlov Jul 31, 2018
d48a649
1.29.0 -> 1.30.0
newpavlov Aug 3, 2018
0673417
Move float ops to unstable inherent methods
newpavlov Sep 12, 2018
36dff2a
Remove tests
newpavlov Sep 12, 2018
206ca68
remove newline
newpavlov Sep 12, 2018
07c15ea
more explicit impl
newpavlov Sep 12, 2018
c5cbea6
fix doctests
newpavlov Sep 12, 2018
de49681
Warn about metadata loader errors
bjorn3 Aug 18, 2018
533c0f0
fix tests
newpavlov Sep 12, 2018
c11281f
fix tests
newpavlov Sep 12, 2018
37972ae
add as_float_secs and from_float_secs methods, refactor float methods
newpavlov Sep 13, 2018
8a0aa9f
remove trailing spaces
newpavlov Sep 13, 2018
9e78cb2
move checks to from_float_secs
newpavlov Sep 13, 2018
2aca697
add panics section to method docs
newpavlov Sep 13, 2018
40e7667
Remove LLVM 3.9 workaround.
irinagpopa Sep 14, 2018
b74215a
Switch wasm math symbols to their original names
alexcrichton Sep 15, 2018
4265256
Enable fatal warnings for the wasm32 linker
alexcrichton Sep 15, 2018
ad8053f
Update LLVM to fix "bool" arguments on PPC32
LionNatsu Sep 15, 2018
73b3c28
Switch linker for aarch64-pc-windows-msvc from LLD to MSVC, since tha…
michaelwoerister Sep 17, 2018
30556d5
Suggest array indexing when tuple indexing on an array.
memoryruins Sep 17, 2018
56c1519
miri: correctly compute expected alignment for field
RalfJung Sep 17, 2018
a8ec8e5
A few cleanups and minor improvements to rustc/traits
ljedrz Sep 12, 2018
dff1bc1
Set diagnostic applicability based on array length
memoryruins Sep 18, 2018
73fdc81
Use expr's span
memoryruins Sep 18, 2018
e3d0d0f
Update The Book to latest
steveklabnik Sep 18, 2018
3d66263
Remove unneeded clone() from tests
ericho Sep 18, 2018
046482e
rustc: future-proof error reporting for polymorphic constants in types.
eddyb Sep 19, 2018
fd7565b
Added tracking issue, fixed check, 1.30 -> 1.31
newpavlov Sep 19, 2018
e2ff97a
Pass --batch to gdb
tromey Sep 19, 2018
ae42e53
Add regression test for thread local static mut borrows
spastorino Sep 19, 2018
a791919
Rollup merge of #52813 - newpavlov:duration_mul_div_extras, r=alexcri…
kennytm Sep 20, 2018
c24d78f
Rollup merge of #53470 - bjorn3:warn_metadata_errors, r=alexcrichton
kennytm Sep 20, 2018
6f7602d
Rollup merge of #54233 - irinagpopa:llvm-3.9, r=tromey
kennytm Sep 20, 2018
a135005
Rollup merge of #54257 - alexcrichton:wasm-math-symbols, r=TimNN
kennytm Sep 20, 2018
13cea8e
Rollup merge of #54258 - alexcrichton:lld-fatal-warnings, r=eddyb
kennytm Sep 20, 2018
9c2dfb4
Rollup merge of #54266 - LionNatsu:master, r=nikomatsakis
kennytm Sep 20, 2018
ea6cfe3
Rollup merge of #54290 - michaelwoerister:aarch64-back-to-msvc, r=ale…
kennytm Sep 20, 2018
cf06e03
Rollup merge of #54292 - memoryruins:issue-53712, r=estebank
kennytm Sep 20, 2018
2d0262e
Rollup merge of #54295 - ljedrz:cleanups_rustc_traits, r=nikomatsakis
kennytm Sep 20, 2018
eb1ec73
Rollup merge of #54298 - RalfJung:miri-field-align, r=eddyb
kennytm Sep 20, 2018
3bfa947
Rollup merge of #54333 - steveklabnik:update-book, r=frewsxcv
kennytm Sep 20, 2018
f5b8c7f
Rollup merge of #54337 - ericho:remove_clone_tests, r=Mark-Simulacrum
kennytm Sep 20, 2018
f2aabb7
Rollup merge of #54346 - eddyb:constant-horror, r=nikomatsakis
kennytm Sep 20, 2018
e76ca54
Rollup merge of #54362 - tromey:travis-gdb-batch-mode, r=nikomatsakis
kennytm Sep 20, 2018
ec08596
Rollup merge of #54367 - spastorino:add-thread-local-static-borrow-te…
kennytm Sep 20, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Pass --batch to gdb
In one of my travis builds, I was surprised to find that the gdb
pager was in use and caused travis to time out.  Adding `--batch`
to the gdb invocation will disable the pager.  Note that the
`-ex q` is retained, to make sure gdb exits with status 0, just in
case `set -e` is in effect somehow.
  • Loading branch information
tromey committed Sep 19, 2018
commit e2ff97a14d832b6814292d54fcea155f5d1905bc
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ after_failure:
EXE=$(echo $CORE | sed 's|obj/cores/core\.[0-9]*\.!checkout!\(.*\)|\1|;y|!|/|');
if [ -f "$EXE" ]; then
printf travis_fold":start:crashlog\n\033[31;1m%s\033[0m\n" "$CORE";
gdb -q -c "$CORE" "$EXE"
gdb --batch -q -c "$CORE" "$EXE"
-iex 'set auto-load off'
-iex 'dir src/'
-iex 'set sysroot .'
Expand Down