mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-23 11:29:46 +00:00
05359321bb
Newer version started producing more warnings. Fix them. |
||
---|---|---|
.. | ||
static | ||
access_test.go | ||
access.go | ||
admin.go | ||
admin.html | ||
api.go | ||
app_test.go | ||
app.yaml | ||
bisect_test.go | ||
bug.html | ||
commit_poll_test.go | ||
config.go | ||
cron.yaml | ||
dashboard.go | ||
email_test.go | ||
entities.go | ||
error.html | ||
fix_test.go | ||
handler.go | ||
index.yaml | ||
jobs_test.go | ||
jobs.go | ||
mail_bisect_result.txt | ||
mail_bug.txt | ||
mail_test_result.txt | ||
main.go | ||
main.html | ||
notifications_test.go | ||
README.md | ||
reporting_email.go | ||
reporting_external.go | ||
reporting_test.go | ||
reporting.go | ||
repro_test.go | ||
templates.html | ||
terminal.html | ||
util_test.go |
Dashboard
dashboard
is an App Engine app that powers syzbot.
The main deployment is at syzkaller.appspot.com.
It is so-called "Standard environment Go app" managed with
original App Engine SDK.
For more details about App Engine refer to the docs
and in particular support package docs.
Note: The app is not stable and is not officially supported. It's here only to power the main deployment.
To test the app one needs to install the SDK and add the dev_appserver.py
binary to $PATH
, then run:
go test github.com/google/syzkaller/dashboard/app
During development it's handy to use -short
flag to not run the longest tests.
If any of the tests fail, use -v
flag to see log of what happens and -run
flag
to run a single test, e.g.:
goapp test -tags=aetest -short -v -run=TestEmailReport github.com/google/syzkaller/dashboard/app