Sylvain303

Results 100 comments of Sylvain303

Could you isolate the failing test in a short example? I got some hangs too, not reproducible yet, it may be related to IFS see #89. could you give your...

$IFS is internal bash variable, used in auto spliting, I've pushed on my forked version and preparing the pull request. from man bash: ``` IFS The Internal Field Separator that...

@filex why not waiting for the pid? maybe starting the process with nohup or something similar writing the pid into a file. You don't start a test in a one...

hum, no idea for the moment. I stepped in bats code for a bug, it parses the .bats, generate a valid shell script in a tmp and execute each function,...

@ztombol I will work on "Test files including other test files." you can assign to me. #99 #169

@ztombol you can also assign me #36 "Running only a specific set of tests".

@btamayo unfortunately I'm missing time. I'm interested, by those issue, #36 + #99 because I need it to complete and release an [internal unit test of bats itself](https://github.com/Sylvain303/bats/tree/internal-unit-test/test/internal). But no...

Here is a simple shell script you can customize to run a single test: `$ cat one_test.sh` ```bash #!/bin/bash batsdir=$(dirname $(readlink -f bats)) echo $batsdir export PATH=$batsdir:$PATH in=$1 a_test=$2 if...

@ret2libc, fortunately there will be soon a new Maintainer(s) #150 You may know, how to merge the PR in your own fork? http://stackoverflow.com/questions/6022302/how-to-apply-unmerged-upstream-pull-requests-from-other-forks-into-my-fork

@mbland, no, no special news for #150, I'm just optimist. :) Coming back to your PR, here: https://github.com/sstephenson/bats/pull/210/files#diff-669b297cddac27dc2ecc950eb92aa5fcL316 Are changes equivalent? Previous version does deleting `\r`, does your version do...