blob: 8b69d1f26c76a5438bd75f65955ba8ca85197532 [file] [log] [blame]
/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/*
* Test driver for the anomaly_collector daemon.
*/
#include <stdlib.h>
int main(int ac, char** av) {
int status = system("exec \"${SRC}\"/anomaly_collector_test.sh");
return status < 0 ? EXIT_FAILURE : WEXITSTATUS(status);
}