mod common;
use common::compare_rca_output_with_files;
#[test]
fn test_deepspeech() {
let exclude = &[
"**/DeepSpeech/native_client/deepspeech.cc",
"**/DeepSpeech/native_client/getopt_win.h",
"**/DeepSpeech/native_client/kenlm/util/mmap.cc",
"**/DeepSpeech/native_client/deepspeech.h",
"**/DeepSpeech/native_client/kenlm/util/double-conversion/fast-dtoa.cc",
"**/DeepSpeech/native_client/kenlm/lm/left_test.cc",
"**/DeepSpeech/native_client/ctcdecode/third_party/openfst-1.6.7/src/test/fst_test.h",
"**/DeepSpeech/native_client/ctcdecode/third_party/openfst-1.6.9-win/src/include/fst/test/fst_test.h",
];
compare_rca_output_with_files("DeepSpeech", &["*.cc", "*.cpp", "*.h", "*.hh"], exclude);
}