1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//! A reusable testing tool, inspired by LLVM's `lit` tool.
//!
//! `lit` standing for _LLVM Integrated Test_.
//!
//! This crate contains both a reusable library for creating test tools and
//! an executable with generalized command line interface for manual usage.

pub use self::config::Config;

pub use self::errors::*;
pub use self::vars::{Variables, VariablesExt};

// The file extensions used by the integration tests for this repository.
#[doc(hidden)]
pub const INTEGRATION_TEST_FILE_EXTENSIONS: &'static [&'static str] = &[
    "txt", "sh",
];

pub mod config;
mod errors;
pub mod event_handler;
mod model;
mod parse;
pub mod run;
mod util;
mod vars;

#[macro_use]
extern crate error_chain;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;