blob: cdb55042ff1e9cf3f1d0b520724480415af4b57a [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);
}