%@ page info="System class path" language="java" %>
<%@ page import="utilities.TempDir" %>
<%! String path1 = null; %>
<%
// The TempDir class must be resolved correctly /w the jspc -classpath
// option, otherwise resolving symbols errors during compilation will occur
TempDir tempDir = new TempDir();
path1 = tempDir.getDirName();
if (path1 != null) {
%>
PASSED
<%
} else {
%>
FAILED
<%
}
%>