Here is my function:
def run_test_non_compilation(short_name,error_label)
@short_name = short_name
$error_label = error_label
# more coding here
end
What I want is as follows:
- If I execute
run_test_non_compilation('MDL_ConfigRS001',"HKI_load_cnf")
It should give the same result as if i called my function using
run_test_non_compilation('MDL_ConfigRS001',"hki_load_cnf")
or
run_test_non_compilation('MDL_ConfigRS001',"hki_LOAD_cnf")
etc...
The variable error_label
must be case insensitive when using it inside the function.