axlOutputsImportFromFile
axlOutputsImportFromFile(t_sessionName t_fileName[?operationt_operationType] [?testt_test] ) =>t/nil
Description
Imports outputs from the specified CSV file. Outputs can be exported to a CSV file by using axlOutputsExportToFile.
Arguments
Value Returned
Examples
The following example imports all the outputs from outputs_Two_Stage_Opamp_OpAmp_AC_top_maestro16.csv and merges them with the existing set of outputs.
axlOutputsImportFromFile("fnxSession0" "outputs_Two_Stage_Opamp_OpAmp_AC_top_maestro16.csv")
=> t
The following example imports all the outputs from outputs_Two_Stage_Opamp_OpAmp_AC_top_maestro16.csv for the test1_1 test and overwrites the existing set of outputs.
axlOutputsImportFromFile("fnxSession0" "outputs_Two_Stage_Opamp_OpAmp_AC_top_maestro16.csv" ?operation "overwrite" ?test "test1_1")
=> t
The following example imports the outputs from outputs_Two_Stage_Opamp_OpAmp_AC_top_maestro16.csv to all the tests and overwrites the existing set of outputs.
axlOutputsImportFromFile("fnxSession0" "outputs_Two_Stage_Opamp_OpAmp_AC_top_maestro16.csv" ?operation "overwrite" ?test "Import to All Tests")
=> t
Return to top