Home
last modified time | relevance | path

Searched refs:userDir (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/
DSystemTest.java157 String userDir = System.getProperty("user.dir"); in testSystemProperties_immutable() local
158 assertNotNull(userDir); in testSystemProperties_immutable()
160 assertEquals(userDir, System.getProperty("user.dir")); in testSystemProperties_immutable()
163 assertEquals(userDir, System.getProperty("user.dir")); in testSystemProperties_immutable()
166 assertEquals(userDir, System.getProperty("user.dir")); in testSystemProperties_immutable()
172 assertEquals(userDir, System.getProperty("user.dir")); in testSystemProperties_immutable()
191 String userDir = System.getProperty("user.dir"); in testSystemProperties_setProperties_null() local
192 assertNotNull(userDir); in testSystemProperties_setProperties_null()
201 assertEquals(userDir, System.getProperty("user.dir")); in testSystemProperties_setProperties_null()
207 String userDir = System.getProperty("user.dir"); in testSystemProperties_setProperties_nonNull() local
[all …]
/libcore/luni/src/test/java/libcore/java/io/
DFileTest.java232 String userDir = System.getProperty("user.dir"); in test_getAbsolutePath() local
233 if (!userDir.endsWith(File.separator)) { in test_getAbsolutePath()
234 userDir = userDir + File.separator; in test_getAbsolutePath()
238 assertEquals(userDir + "poop", f.getAbsolutePath()); in test_getAbsolutePath()
/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixFileSystemProvider.java55 String userDir = System.getProperty(USER_DIR); in UnixFileSystemProvider() local
56 theFileSystem = newFileSystem(userDir); in UnixFileSystemProvider()