gecko/testing/sisyphus/bin/sayvars.sh

7 lines
158 B
Bash
Raw Normal View History

#!/bin/bash -e
2007-06-12 08:46:42 -07:00
# -*- Mode: Shell-script; tab-width: 4; indent-tabs-mode: nil; -*-
for var in `echo ${!TEST_*}`; do
2007-06-12 08:46:42 -07:00
echo ${var}=${!var} >> $TEST_LOG
done