Skip to content

Commit 2fe0397

Browse files
authored
Remove the core dump support (#2183)
* Remove the core dump support * remove core settings * Extend timeout for the categories test
1 parent 0eae0cb commit 2fe0397

File tree

4 files changed

+1
-36
lines changed

4 files changed

+1
-36
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,8 @@ install:
2424
- ./tool/install_travis.sh
2525

2626
before_script:
27-
- ulimit -c unlimited -S
2827
- pub get
2928

30-
after_failure:
31-
- ./tool/after_failure_travis.sh
32-
3329
before_install:
3430
# Disable non-blocking I/O for stdout, stderr https://github.com/travis-ci/travis-ci/issues/4704#issuecomment-348435959
3531
- python -c 'import os,sys,fcntl; flags = fcntl.fcntl(sys.stdout, fcntl.F_GETFL); fcntl.fcntl(sys.stdout, fcntl.F_SETFL, flags&~os.O_NONBLOCK);'

test/model_special_cases_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ void main() {
290290
List<Category> packageCategories =
291291
packageGraphSmall.localPackages.first.categories;
292292
expect(packageCategories.length, equals(0));
293-
});
293+
}, timeout: Timeout.factor(2));
294294
});
295295

296296
group('Package', () {

tool/after_failure_travis.sh

Lines changed: 0 additions & 29 deletions
This file was deleted.

tool/install_travis.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
set -x
99

1010
if uname | grep -q Linux ; then
11-
sudo apt-get update
12-
sudo apt-get install -y gdb
1311
sudo gem install coveralls-lcov
1412
coveralls-lcov --help
1513
fi

0 commit comments

Comments
 (0)