playground: add integration test for https://golang.org/cl/105235

Add a test case that checks fake timestamps generated by the patched
runtime.write.

Updates golang/go#24615
Updates golang/go#24659

Change-Id: I210cfd4500e7f72567539dd9b3e23da4f907a3e2
Reviewed-on: https://go-review.googlesource.com/106475
Reviewed-by: Bryan C. Mills <bcmills@google.com>
1 file changed
tree: 3529eef90f393b196d50e45028a4f635b6b83a79
  1. static/
  2. app.yaml
  3. AUTHORS
  4. cache.go
  5. client.go
  6. codereview.cfg
  7. CONTRIBUTING.md
  8. CONTRIBUTORS
  9. Dockerfile
  10. edit.go
  11. edit.html
  12. enable-fake-time.patch
  13. fake_fs.lst
  14. fmt.go
  15. LICENSE
  16. logger.go
  17. main.go
  18. Makefile
  19. PATENTS
  20. play.go
  21. play_test.go
  22. README.md
  23. sandbox.go
  24. server.go
  25. server_test.go
  26. share.go
  27. store.go
  28. strict-time.patch
README.md

playground

This subrepository holds the source for the Go playground: https://play.golang.org/

Building

# build the image
docker build -t playground .

Running

docker run --name=play --rm -d -p 8080:8080 playground
# run some Go code
cat /path/to/code.go | go run client.go | curl -s --upload-file - localhost:8080/compile

Deployment

gcloud --project=golang-org --account=person@example.com app deploy app.yaml

Contributing

To submit changes to this repository, see https://golang.org/doc/contribute.html.