Project

General

Profile

1
#!/bin/bash
2
# Sets the correct test output to be the generated test output
3
# Usage: self file
4

    
5
selfDir="$(dirname -- "$0")"
6
cd "$selfDir"
7

    
8
file="$(basename -- "$1")"
9
cp -p "$file" "test_output/$file"
(3-3/12)