forked from Advanced_Python/advanced-python-homework-2023
13 lines
287 B
Bash
13 lines
287 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
interpreterCmd=$1;
|
||
|
interpreterTitle=$2;
|
||
|
|
||
|
{
|
||
|
time $interpreterCmd test_full_with_types.py &&
|
||
|
time $interpreterCmd test_full_no_types.py &&
|
||
|
time $interpreterCmd test_full_np.py;
|
||
|
} 2> results/${interpreterTitle}_full.txt;
|
||
|
|
||
|
$interpreterCmd test.py $interpreterTitle;
|