blob: 9b6afeb1a26f56988c54ac79dfc4c4988c4a1243 (
plain)
1
2
3
4
5
6
7
|
#!/usr/bin/env ruby
gitaly_dir = 'tmp/tests/gitaly'
args = %W[#{gitaly_dir}/gitaly #{gitaly_dir}/config.toml]
# Print the PID of the spawned process
puts spawn(*args)#, [:out, :err] => 'log/gitaly-test.log')
|