Davide Ancona, Angelo Ferrando, Luca Franceschini, Viviana Mascardi
International Runtime Verification Competition
18th International Conference on Runtime Verification
Limassol, Cyprus, 12th November 2018
JavaScript execution environment based on an asynchronous computational model
Challenges:
Based on code instrumentation, with Jalangi
Every function call is registered, and the trace contains all call information in JSON
Trace expressions are used as formalism
Prolog implementation available as oracle
Two benchmark suites:
file system API and HTTP API
var server = http.createServer(function (req, res) {
res.writeHead(200);
res.write('okay');
// BUG! missing res.end()
});