]> gitweb.factorcode.org Git - factor.git/log
factor.git
4 years agocore/basis/extra: use flags{ } in places.
John Benediktsson [Tue, 11 Feb 2020 21:27:42 +0000 (13:27 -0800)]
core/basis/extra: use flags{ } in places.

4 years agoio.directories.windows: don't need to wrap.
John Benediktsson [Tue, 11 Feb 2020 21:25:44 +0000 (13:25 -0800)]
io.directories.windows: don't need to wrap.

4 years agovocabs.hierarchy: change sorting to sort visible-dirs.
John Benediktsson [Sun, 9 Feb 2020 18:00:18 +0000 (10:00 -0800)]
vocabs.hierarchy: change sorting to sort visible-dirs.

4 years agovocabs.hierarchy: faster all-disk-vocabs-recursive.
John Benediktsson [Sun, 9 Feb 2020 17:04:14 +0000 (09:04 -0800)]
vocabs.hierarchy: faster all-disk-vocabs-recursive.

The old technique caused a high amount of redundant ``exists?`` checks,
even though we are traversing the directory tree.  That happens to be a
little slow on Windows, for some pathological reason, the first time
it's run. This should make it better while we also investigate why
``windows_stat`` is slower in that case.

4 years agoio.files.windows: make win32-file-attributes a little faster.
John Benediktsson [Fri, 7 Feb 2020 22:11:43 +0000 (14:11 -0800)]
io.files.windows: make win32-file-attributes a little faster.

4 years agomath.statistics: adding interquartile-range, midhinge, and fivenum.
John Benediktsson [Thu, 6 Feb 2020 19:40:53 +0000 (11:40 -0800)]
math.statistics: adding interquartile-range, midhinge, and fivenum.

4 years agotensors: cleanup using, and make a few float math operations faster.
John Benediktsson [Thu, 30 Jan 2020 21:39:27 +0000 (13:39 -0800)]
tensors: cleanup using, and make a few float math operations faster.

4 years agogobject-introspection: support more number type constants.
John Benediktsson [Thu, 30 Jan 2020 16:21:57 +0000 (08:21 -0800)]
gobject-introspection: support more number type constants.

4 years agoFix linux find-so failure if no old ld entries exist
Chris Double [Wed, 29 Jan 2020 12:00:38 +0000 (01:00 +1300)]
Fix linux find-so failure if no old ld entries exist

If '/etc/ld.so.cache' does not contain any old entries
using the 'HeaderOld' struct then it fails with a bad-magic
error before looking for the HeaderNew entries.

My Ubuntu 19.10 system doesn't have any old entries so always
fails here when using 'load-all', which results in the
'extra/llvm' vocab failing due to using 'find-so'.

The fix implemented here is to catch the error and recover from
it by seeking back to the start of the header before looking for
the new header entries.

4 years agomath.matrices: use any? and all? directly in tests.
John Benediktsson [Wed, 29 Jan 2020 04:44:19 +0000 (20:44 -0800)]
math.matrices: use any? and all? directly in tests.

4 years agomath.matrices: update using on tests.
John Benediktsson [Wed, 29 Jan 2020 04:38:43 +0000 (20:38 -0800)]
math.matrices: update using on tests.

4 years agobittorrent: fix check-bitfield, add a test.
John Benediktsson [Wed, 29 Jan 2020 00:25:19 +0000 (16:25 -0800)]
bittorrent: fix check-bitfield, add a test.

4 years agopersistent.hashtables: cleanup.
John Benediktsson [Wed, 29 Jan 2020 00:22:33 +0000 (16:22 -0800)]
persistent.hashtables: cleanup.

4 years agomath: use sorted-histogram values in a few places.
John Benediktsson [Wed, 29 Jan 2020 00:21:33 +0000 (16:21 -0800)]
math: use sorted-histogram values in a few places.

4 years agoui.gadgets.panes: fix for big strings on windows and linux.
John Benediktsson [Wed, 29 Jan 2020 00:16:09 +0000 (16:16 -0800)]
ui.gadgets.panes: fix for big strings on windows and linux.

Using 3639 grapheme length, which is win32 limit. Maybe cairo supports
4681 graphemes, but use the lower limit for now.

4 years agoui.backend.cocoa.views: some formatting cleanup.
John Benediktsson [Fri, 24 Jan 2020 22:47:42 +0000 (14:47 -0800)]
ui.backend.cocoa.views: some formatting cleanup.

4 years agoTests for System V AMD64 ABI (#2233)
kusumotonorio [Fri, 24 Jan 2020 21:54:33 +0000 (06:54 +0900)]
Tests for System V AMD64 ABI (#2233)

* Adds Tests for System V AMD64 ABI

* Remove TABs, etc.

* Adds a test

* Some Cleanup

* Add Callback Tests

* Add More Tests

4 years agoMerge pull request #2235 from kusumotonorio/system-v-amd64-abi
John Benediktsson [Fri, 24 Jan 2020 21:52:40 +0000 (21:52 +0000)]
Merge pull request #2235 from kusumotonorio/system-v-amd64-abi

Improved System V AMD64 ABI compliance

4 years agobittorrent: initial commit of message parsing.
John Benediktsson [Fri, 24 Jan 2020 21:47:20 +0000 (13:47 -0800)]
bittorrent: initial commit of message parsing.

4 years agoLICENSE.txt: Update the copyright year!
Doug Coleman [Fri, 24 Jan 2020 01:44:03 +0000 (19:44 -0600)]
LICENSE.txt: Update the copyright year!

4 years agounix.factor: Bug fix etc., boxing.factor: Improves record/unrecord-reps 2235/head
kusumotonorio [Thu, 23 Jan 2020 11:02:03 +0000 (20:02 +0900)]
unix.factor: Bug fix etc., boxing.factor: Improves record/unrecord-reps

4 years agoboxing.factor: Swap first and second positions
kusumotonorio [Mon, 20 Jan 2020 11:47:16 +0000 (20:47 +0900)]
boxing.factor: Swap first and second positions

4 years agoboxing.factor: Use count
kusumotonorio [Mon, 20 Jan 2020 11:38:43 +0000 (20:38 +0900)]
boxing.factor: Use count

4 years agounix.factor: Use count
kusumotonorio [Mon, 20 Jan 2020 09:53:26 +0000 (18:53 +0900)]
unix.factor: Use count

4 years agoput alien.factor, ffi_test.* back
kusumotonorio [Sun, 19 Jan 2020 13:30:48 +0000 (22:30 +0900)]
put alien.factor, ffi_test.* back

4 years agoput alien.factor back
kusumotonorio [Sun, 19 Jan 2020 13:27:17 +0000 (22:27 +0900)]
put alien.factor back

4 years agoAdd Callback Tests
kusumotonorio [Sun, 19 Jan 2020 12:57:05 +0000 (21:57 +0900)]
Add Callback Tests

4 years agoStop inc-not-f and dec-not-f, etc
kusumotonorio [Sun, 19 Jan 2020 05:30:38 +0000 (14:30 +0900)]
Stop inc-not-f and dec-not-f, etc

4 years agobyte-arrays: Add a byte-sequence protocol for byte-{array,vector}
Doug Coleman [Sat, 11 Jan 2020 23:31:32 +0000 (17:31 -0600)]
byte-arrays: Add a byte-sequence protocol for byte-{array,vector}

Allow hexdumping strings as utf8 for convenience.

4 years agoboxing.factor: Change Stack Effects
kusumotonorio [Thu, 16 Jan 2020 14:34:24 +0000 (23:34 +0900)]
boxing.factor: Change Stack Effects

4 years agoRemove an extra space
kusumotonorio [Thu, 16 Jan 2020 12:06:22 +0000 (21:06 +0900)]
Remove an extra space

4 years agoImprove System V AMD64 ABI compliance
kusumotonorio [Thu, 16 Jan 2020 11:57:13 +0000 (20:57 +0900)]
Improve System V AMD64 ABI compliance

4 years agotuple-arrays: final-class wasn't a predicate class.
John Benediktsson [Wed, 15 Jan 2020 21:54:40 +0000 (13:54 -0800)]
tuple-arrays: final-class wasn't a predicate class.

4 years agoclasses: fix a couple of check-instance uses.
John Benediktsson [Wed, 15 Jan 2020 21:33:50 +0000 (13:33 -0800)]
classes: fix a couple of check-instance uses.

4 years agocontinuations: more use of check-instance.
John Benediktsson [Wed, 15 Jan 2020 18:52:34 +0000 (10:52 -0800)]
continuations: more use of check-instance.

4 years agoclasses: use check-instance in a few places, to remove duplication.
John Benediktsson [Wed, 15 Jan 2020 18:34:47 +0000 (10:34 -0800)]
classes: use check-instance in a few places, to remove duplication.

4 years agoclasses: adding a check-instance for checking type of things.
John Benediktsson [Wed, 15 Jan 2020 18:29:06 +0000 (10:29 -0800)]
classes: adding a check-instance for checking type of things.

This will replace a bunch of not-a-thingy errors that we have in a few
places.  Those should probably go away anyway, in favor of better type
propagation or runtime JIT compilation.

4 years agourls.encoding: support byte-array values for encoding.
John Benediktsson [Thu, 9 Jan 2020 22:17:01 +0000 (14:17 -0800)]
urls.encoding: support byte-array values for encoding.

4 years agobencode: support decoding byte-arrays.
John Benediktsson [Thu, 9 Jan 2020 19:57:20 +0000 (11:57 -0800)]
bencode: support decoding byte-arrays.

4 years agobencode: alloe bencode of byte-arrays.
John Benediktsson [Thu, 9 Jan 2020 01:33:11 +0000 (17:33 -0800)]
bencode: alloe bencode of byte-arrays.

4 years agotools.deploy: Up the deploy sizes for mac32.
Doug Coleman [Thu, 9 Jan 2020 01:21:58 +0000 (19:21 -0600)]
tools.deploy: Up the deploy sizes for mac32.

Looks like upgrading to unicode 12 caused the sizes to grow. These are mostly graphics demos which should not depend on unicode, but the tools can't detect this easily, so punt for now.

Here's a command to show the last clean deploy to where it broke.

git log -p 4201c2149b66d5ce45a9e45be95459256486a7ea..8eb7621b549a7956665affc9e53a48e8e8b29ea3

4 years agobencode: use linked-assocs to preserve ordering, fix byte-strings.
John Benediktsson [Wed, 8 Jan 2020 19:45:42 +0000 (11:45 -0800)]
bencode: use linked-assocs to preserve ordering, fix byte-strings.

the byte-string was being "decoded" with replacement characters, messing
up binary data.

4 years agollvm.ffi: ...
John Benediktsson [Wed, 8 Jan 2020 19:44:45 +0000 (11:44 -0800)]
llvm.ffi: ...

4 years agotensors.tensor-slice: make step-slice not extend slice.
John Benediktsson [Wed, 8 Jan 2020 17:05:06 +0000 (09:05 -0800)]
tensors.tensor-slice: make step-slice not extend slice.

This caused a small regression in compiler.tree.cleanup on this test:

{ t } [
    [ { array } declare 2 <groups> [ . . ] assoc-each ]
    \ nth-unsafe inlined?
] unit-test

I'm not entirely sure why it wasn't able to infer the slice that was created
for iteration stays a slice, and never becomes a step-slice, so perhaps there
is some improvement to be made in type inference here.

4 years agollvm.ffi: need to fix stack effect for the false case.
John Benediktsson [Wed, 8 Jan 2020 16:51:41 +0000 (08:51 -0800)]
llvm.ffi: need to fix stack effect for the false case.

4 years agoio: fix for win32-error not throwing on zero.
John Benediktsson [Mon, 6 Jan 2020 22:20:15 +0000 (14:20 -0800)]
io: fix for win32-error not throwing on zero.

4 years agoio.files: quot effects in change-file-lines and change-file-contents.
John Benediktsson [Mon, 6 Jan 2020 21:26:19 +0000 (13:26 -0800)]
io.files: quot effects in change-file-lines and change-file-contents.

4 years agogame.loop: last-tick-percent-offset counts down to zero, need to subtract from 1.
John Benediktsson [Mon, 6 Jan 2020 21:20:12 +0000 (13:20 -0800)]
game.loop: last-tick-percent-offset counts down to zero, need to subtract from 1.

4 years agowindows.errors: fix a compilation error
Alexander Iljin [Tue, 28 Jun 2016 22:55:15 +0000 (01:55 +0300)]
windows.errors: fix a compilation error

4 years agowindows.errors: streamline error handling and throwing
Alexander Iljin [Tue, 28 Jun 2016 22:55:15 +0000 (01:55 +0300)]
windows.errors: streamline error handling and throwing

4 years agoReplace "win32-error-string throw" with windows-error instance throwing
Alexander Iljin [Tue, 28 Jun 2016 22:23:36 +0000 (01:23 +0300)]
Replace "win32-error-string throw" with windows-error instance throwing

Remove win32-error-string, because there was only one place it was used in.

4 years agoReplace "n>win32-error-string throw" with windows-error instance throwing
Alexander Iljin [Tue, 28 Jun 2016 22:20:38 +0000 (01:20 +0300)]
Replace "n>win32-error-string throw" with windows-error instance throwing

4 years agoDelete throw-win32-error, replace with win32-error calls
Alexander Iljin [Tue, 24 May 2016 17:42:48 +0000 (20:42 +0300)]
Delete throw-win32-error, replace with win32-error calls

4 years agoio.files.windows: replace "-1 <alien>" with INVALID_HANDLE_VALUE
Alexander Iljin [Tue, 24 May 2016 17:40:11 +0000 (20:40 +0300)]
io.files.windows: replace "-1 <alien>" with INVALID_HANDLE_VALUE

4 years agoReplace inline INVALID_HANDLE_VALUE checks with check-invalid-handle calls
Alexander Iljin [Tue, 24 May 2016 17:33:19 +0000 (20:33 +0300)]
Replace inline INVALID_HANDLE_VALUE checks with check-invalid-handle calls

On error find-first-file will now throw a windows-error instance instead of
a string.

4 years agowindows.errors: make check-invalid-handle throw windows-error instances
Alexander Iljin [Tue, 24 May 2016 17:30:02 +0000 (20:30 +0300)]
windows.errors: make check-invalid-handle throw windows-error instances

There are two consequences:
- the thrown object is now a windows-error, previously it was a string;
- if GetLastError returns zero, nothing is thrown. Previously the string
"The operation completed successfully." was thrown in that case.

4 years agogame.loop: using timer's next-nanos, which is in the future.
John Benediktsson [Mon, 6 Jan 2020 21:14:59 +0000 (13:14 -0800)]
game.loop: using timer's next-nanos, which is in the future.

Also, use clamp to make sure tick offset is always [0,1].

4 years agollvm.ffi: fix cond.
John Benediktsson [Mon, 6 Jan 2020 03:14:22 +0000 (19:14 -0800)]
llvm.ffi: fix cond.

4 years agogpu.demos.bunny: use while* instead of each-morsel
Doug Coleman [Sun, 5 Jan 2020 19:42:31 +0000 (13:42 -0600)]
gpu.demos.bunny: use while* instead of each-morsel

4 years agoio.files.info: Fix linux file-system-info recursion
Doug Coleman [Sun, 5 Jan 2020 19:16:12 +0000 (13:16 -0600)]
io.files.info: Fix linux file-system-info recursion

4 years agogame.loop: Fix game loop for timers change
Doug Coleman [Sat, 4 Jan 2020 20:02:21 +0000 (14:02 -0600)]
game.loop: Fix game loop for timers change

4 years agobuild: Fix paths...
Doug Coleman [Sat, 4 Jan 2020 19:47:13 +0000 (13:47 -0600)]
build: Fix paths...

4 years agomason.disk: fix word name
Doug Coleman [Sat, 4 Jan 2020 19:40:26 +0000 (13:40 -0600)]
mason.disk: fix word name

4 years agoio.files.info: Fix find-mount-point.
Doug Coleman [Sat, 4 Jan 2020 19:33:45 +0000 (13:33 -0600)]
io.files.info: Fix find-mount-point.

4 years agoRevert "build.cmd: github is source of truth now"
Doug Coleman [Sat, 4 Jan 2020 19:21:28 +0000 (13:21 -0600)]
Revert "build.cmd: github is source of truth now"

This reverts commit d7af258eb7c1e115a228cb92098c1ee1b2328917.

I renamed /git/factor-github.git to /git/factor.git

4 years agoio.files.info: fix circularity regression in file-systems on linux
Doug Coleman [Sat, 4 Jan 2020 15:07:32 +0000 (09:07 -0600)]
io.files.info: fix circularity regression in file-systems on linux

4 years agomason.git: new repo location
Doug Coleman [Sat, 4 Jan 2020 14:27:16 +0000 (08:27 -0600)]
mason.git: new repo location

4 years agoio: Fix word to find disk space if a file is missing.
Doug Coleman [Fri, 3 Jan 2020 22:30:00 +0000 (16:30 -0600)]
io: Fix word to find disk space if a file is missing.

Add canonicalize-drive because Windows likes C: instead of c:.

Add >windows-path for path string comparison.

Add canonicalize-path-full for fixing the path, drive, and / to \\ on
Windows.

4 years agobuild.cmd: github is source of truth now
Doug Coleman [Fri, 3 Jan 2020 21:26:02 +0000 (15:26 -0600)]
build.cmd: github is source of truth now

4 years agomason.disk: Fix usage of word
Doug Coleman [Fri, 3 Jan 2020 21:18:14 +0000 (15:18 -0600)]
mason.disk: Fix usage of word

4 years agoRevert "windows.errors: make check-invalid-handle throw windows-error instances"
Doug Coleman [Fri, 3 Jan 2020 19:04:38 +0000 (13:04 -0600)]
Revert "windows.errors: make check-invalid-handle throw windows-error instances"

This reverts commit 38ab7289b5db4bdc33b9a0ac76fa4c4daa6c092c.

4 years agoRevert "Replace inline INVALID_HANDLE_VALUE checks with check-invalid-handle calls"
Doug Coleman [Fri, 3 Jan 2020 19:04:29 +0000 (13:04 -0600)]
Revert "Replace inline INVALID_HANDLE_VALUE checks with check-invalid-handle calls"

This reverts commit 1e61dbfd2af3dcd16053f0f55eabc745dce6f30d.

4 years agoRevert "io.files.windows: replace "-1 <alien>" with INVALID_HANDLE_VALUE"
Doug Coleman [Fri, 3 Jan 2020 19:04:11 +0000 (13:04 -0600)]
Revert "io.files.windows: replace "-1 <alien>" with INVALID_HANDLE_VALUE"

This reverts commit a6f0b74f03059cab725e13ff83bdfc4b242f8de3.

4 years agoRevert "Delete throw-win32-error, replace with win32-error calls"
Doug Coleman [Fri, 3 Jan 2020 19:04:01 +0000 (13:04 -0600)]
Revert "Delete throw-win32-error, replace with win32-error calls"

This reverts commit e1be081ec93061d1e236d6d6f4c1778feef854c2.

4 years agoRevert "Replace "n>win32-error-string throw" with windows-error instance throwing"
Doug Coleman [Fri, 3 Jan 2020 19:03:52 +0000 (13:03 -0600)]
Revert "Replace "n>win32-error-string throw" with windows-error instance throwing"

This reverts commit 70d08ce743d8bae6001f28baf8cc0f13afc93c10.

4 years agoRevert "Replace "win32-error-string throw" with windows-error instance throwing"
Doug Coleman [Fri, 3 Jan 2020 19:03:10 +0000 (13:03 -0600)]
Revert "Replace "win32-error-string throw" with windows-error instance throwing"

This reverts commit 2dfb3b3a73bd2ac1200b9f5f7161a2510a98cebc.

4 years agoRevert "windows.errors: streamline error handling and throwing"
Doug Coleman [Fri, 3 Jan 2020 19:02:57 +0000 (13:02 -0600)]
Revert "windows.errors: streamline error handling and throwing"

This reverts commit ca474dd154c8ce59b4a1e40281a4b9fc6e182a1a.

4 years agoio: Trim using lists.
Doug Coleman [Fri, 3 Jan 2020 18:42:11 +0000 (12:42 -0600)]
io: Trim using lists.

4 years agomason.disk: Better handling of free disk space.
Doug Coleman [Fri, 3 Jan 2020 16:48:24 +0000 (10:48 -0600)]
mason.disk: Better handling of free disk space.

- Works if the build directory does not exist, assuming it would be created on the root disk containing the path of the first existing parent directory
- Space calculation is wrong, we should be using the available space
- MB is GB, comment was wrong
- Call find-mount-point-info to get the real disk mount point even if the dir does not exist

4 years agotimers: simplify by setting delay-nanos directly.
John Benediktsson [Wed, 18 Dec 2019 04:03:45 +0000 (20:03 -0800)]
timers: simplify by setting delay-nanos directly.

4 years agomisc/vim: update syntax for cartesian-find.
John Benediktsson [Sat, 14 Dec 2019 03:31:17 +0000 (19:31 -0800)]
misc/vim: update syntax for cartesian-find.

4 years agosequences.product: adding product-find.
John Benediktsson [Sat, 14 Dec 2019 03:30:22 +0000 (19:30 -0800)]
sequences.product: adding product-find.

4 years agosequences: adding cartesian-find.
John Benediktsson [Sat, 14 Dec 2019 03:20:27 +0000 (19:20 -0800)]
sequences: adding cartesian-find.

4 years agotimers: allow timers to re-use threads when restarted, simplify.
John Benediktsson [Fri, 13 Dec 2019 23:31:49 +0000 (15:31 -0800)]
timers: allow timers to re-use threads when restarted, simplify.

Throw an error if started twice.

4 years agotensors: faster tensor/number operations by forcing floats.
John Benediktsson [Fri, 13 Dec 2019 23:09:24 +0000 (15:09 -0800)]
tensors: faster tensor/number operations by forcing floats.

4 years agotensors: optimize matrix operations.
Nandeeka Nayak [Tue, 29 Oct 2019 17:09:38 +0000 (10:09 -0700)]
tensors: optimize matrix operations.

tensors: Add benchmarking file

tensors: Add addition and multiplication tests for benchmarking

tensors: inlined slicing to improve metrics.

tensors: fix help-lint warnings.

tensors: restore newer matmul

tensors: add fixnum declaration.

tensors: away with you, unsafe!

tensors: transpose added to benchmarks

tensors: optimize matmul to be within an order of magnitude of np.

tensors: remove type declaration.

tensors: optimize matmul.

4 years agomisc/vim: update vim syntax keywords.
John Benediktsson [Fri, 13 Dec 2019 22:41:43 +0000 (14:41 -0800)]
misc/vim: update vim syntax keywords.

4 years agocore/basis/extra: using while* in a few places.
John Benediktsson [Fri, 13 Dec 2019 22:38:26 +0000 (14:38 -0800)]
core/basis/extra: using while* in a few places.

4 years agokernel: adding while* that passes the predicate result to the body.
John Benediktsson [Fri, 13 Dec 2019 22:35:51 +0000 (14:35 -0800)]
kernel: adding while* that passes the predicate result to the body.

4 years agoSupport for MinGW compiler. Need to instal MinGW compiler and runtime.
nomennescio [Tue, 5 Nov 2019 12:57:09 +0000 (13:57 +0100)]
Support for MinGW compiler. Need to instal MinGW compiler and runtime.

4 years ago.travis: Don't upgrade ruby, it takes too long.
Doug Coleman [Mon, 9 Dec 2019 18:12:07 +0000 (10:12 -0800)]
.travis: Don't upgrade ruby, it takes too long.

4 years ago.travis: install correct version of ruby
Doug Coleman [Mon, 9 Dec 2019 17:56:15 +0000 (09:56 -0800)]
.travis: install correct version of ruby

4 years ago.travis: rvm reload
Doug Coleman [Mon, 9 Dec 2019 17:50:59 +0000 (09:50 -0800)]
.travis: rvm reload

4 years ago.travis: use newer ruby and turn off brew updating
Doug Coleman [Mon, 9 Dec 2019 17:43:27 +0000 (09:43 -0800)]
.travis: use newer ruby and turn off brew updating

4 years agotravis: upgrade rvm first
Doug Coleman [Mon, 9 Dec 2019 17:35:13 +0000 (09:35 -0800)]
travis: upgrade rvm first

4 years ago.travis: more testing
Doug Coleman [Sun, 8 Dec 2019 20:20:30 +0000 (12:20 -0800)]
.travis: more testing

4 years ago.travis: fixing ruby?
Doug Coleman [Sun, 8 Dec 2019 20:12:37 +0000 (12:12 -0800)]
.travis: fixing ruby?

4 years ago.travis: Delete old rubygems after we install it.
Doug Coleman [Sun, 8 Dec 2019 20:07:38 +0000 (12:07 -0800)]
.travis: Delete old rubygems after we install it.

4 years ago.travis: Trying to fix macos.
Doug Coleman [Sun, 8 Dec 2019 19:58:06 +0000 (11:58 -0800)]
.travis: Trying to fix macos.

/usr/local/Homebrew/Library/Homebrew/brew.rb:10:in `<main>': Homebrew must be run under Ruby 2.6! You're running 2.3.3. (RuntimeError)
The command "if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew ls --versions snappy > /dev/null || brew install snappy; fi" failed and exited with 1 during .
Your build has been stopped.

4 years ago.travis.yml: Don't run long-running tests.
Doug Coleman [Sun, 8 Dec 2019 19:48:59 +0000 (11:48 -0800)]
.travis.yml: Don't run long-running tests.