ts icon indicating copy to clipboard operation
ts copied to clipboard

A shell test script

Results 9 ts issues
Sort by recently updated
recently updated
newest added

I've observed the following: ``` ./Projectfile shell centos /bin/ksh ln -sf /bin/ksh /bin/sh ./test/pass # . # # ./test/pass[8]: .: line 269: 0.092 - 0.041: arithmetic syntax error ``` The...

In Debian testing/bullseye, clone the `ts` repository and run `./Bakefile test-all` as suggested in the README: ``` ~/projects/ts$ ./Bakefile test-all # alpine /bin/bash 69 pass 0 fail 0 skip 1...

This is super-useful as a debugging tool. I've really enjoyed having it and miss it when it's gone. Current problems making this a work-in-progress: - The exit status of the...

Might also add an ENV variable to turn that behavior off.

The result of which is that if you kill the process group within a test then you kill ts itself. This is hard to avoid because (AFAIK) setting the process...

Probably need to think about this more, but if you start background jobs then they will hang without something like this: ``` jobs -p | xargs kill ``` Bonus points...

This can lead to some unexpected behavior because by default ts_tmp_dir is a full path. So expand the tmpdir when set.

This is something that will come up a lot and people won't think to set it.

Heck, maybe this is just something to document. ``` . ts assert [ "$ts_version" \> "1.0" ] ``` Or similar...