| |
Error: Too many open
files
This message has been
observed on UNIX platforms and is associated with test scripts that open
files without closing them later. It may also cause QA Partner to core
prior to creating the results file.
Solution - Make sure every FileOpen or IniFileOpen function call
is balanced with a FileClose or IniFileClose function call. Even
this may not be sufficient. If a test case within the test script
can end before all of the files it opened have been closed, then this
problem can develop as additional testcases are started from this script.
To avoid the problem, define a public BOOLEAN variable to record each
file open status. Add a test of this variable in the TestCaseExit
function so that the file may be closed within the TestCaseExit function.
|
|