Skip to content
This repository was archived by the owner on Jun 1, 2024. It is now read-only.

Tags: hhvm/hacktest

Tags

v2.4.0

Toggle v2.4.0's commit message
Assume tests/ when no SOURCE_PATH is specified

If tests/ does not exist, print the old output from CLILib.
The HackTest output would be confusing, namely:
Uncaught exception 'Facebook\HackTest\InvalidTestFileException'
with message 'File or directory (tests) not found'
It would be unclear where the name tests came from.

v2.3.0

Toggle v2.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update fbexpect to 2.8.1 (#108)

v2.2.3

Toggle v2.2.3's commit message

Unverified

The committer email address is not verified.
permit HSL IO v0.3

v2.2.2

Toggle v2.2.2's commit message

Unverified

The committer email address is not verified.
Replace 'writeAsync' with 'writeAllAsync' in more places

Prevents truncated output, and fixes support for future
hsl-experimental release

v2.2.1

Toggle v2.2.1's commit message

Unverified

The committer email address is not verified.
replace file_exists() call with could_include()

v2.2.0

Toggle v2.2.0's commit message

Unverified

The committer email address is not verified.
Support HHVM 4.64

Temporarily disable hhast in CI as it has not yet been updated for new
hh-cliilb

v2.2.0rc1

Toggle v2.2.0rc1's commit message

Unverified

The committer email address is not verified.
Support (and require) HSL IO 0.2

v2.1.3

Toggle v2.1.3's commit message

Unverified

The committer email address is not verified.
array -> varray in shape

v2.1.2

Toggle v2.1.2's commit message

Unverified

The committer email address is not verified.
Update dependencies

- explicitly depend on HSL-IO v0.1 API
- permit type-assert v4

v2.1.1

Toggle v2.1.1's commit message
[easy] make VerboseCLIOutput forward compatible with future HSL IO ch…

…ange

HSL IO is changing `writeAsync()` to return `Awaitable<int>`, but the
function here is `Awaitable<void>` - `return await` is no longer
compatible.

Tangentially, I'm a little surprised that explicit return values are OK
in `Awaitable` functions :/