├── .gitignore ├── FakeTimeTest.java ├── README.md ├── lib └── mac │ └── libfaketime.jnilib ├── src └── FakeTimeAgent.c ├── test_linux.sh ├── test_linux_64.sh └── test_mac.sh /.gitignore: -------------------------------------------------------------------------------- 1 | out/ 2 | *.class 3 | -------------------------------------------------------------------------------- /FakeTimeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindsv/faketime/HEAD/FakeTimeTest.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindsv/faketime/HEAD/README.md -------------------------------------------------------------------------------- /lib/mac/libfaketime.jnilib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindsv/faketime/HEAD/lib/mac/libfaketime.jnilib -------------------------------------------------------------------------------- /src/FakeTimeAgent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindsv/faketime/HEAD/src/FakeTimeAgent.c -------------------------------------------------------------------------------- /test_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindsv/faketime/HEAD/test_linux.sh -------------------------------------------------------------------------------- /test_linux_64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindsv/faketime/HEAD/test_linux_64.sh -------------------------------------------------------------------------------- /test_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arvindsv/faketime/HEAD/test_mac.sh --------------------------------------------------------------------------------