Forum Discussion
Altera_Forum
Honored Contributor
14 years ago{} stops Tcl from expanding the variable.
Use " " in place of {} vlog -vlog01compat -work work +incdir+../tests "../tests/$m3m_test_case" or just leave them out vlog -vlog01compat -work work +incdir+../tests ../tests/$m3m_test_case You can also use environment variables vlog -vlog01compat -work work +incdir+$env(TESTS) $env(TESTS)/m3m_test_case where TESTS is an environment variable pointing to your tests folder. Cheers, Dave