Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid recompiling executable if already compiled in previous tests #69

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Commits on Jul 23, 2020

  1. Avoid recompiling previous tests

    This is done by:
    - Storing compiled executable into a new "Build" folder
    - When running a new tests, comparing compiling options to those used
    in previous tests; it they match, the previous executable is retrieved
    from the Build folder.
    
    Note: this assumes that each executable name is unique ; i.e. that
    two sets of compiling options cannot produce the same executable name.
    
    In order to obtain the string that contains compiling options, part
    of the function `build_c` was extracted as a separate function
    RemiLehe committed Jul 23, 2020
    Configuration menu
    Copy the full SHA
    c219b8d View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2020

  1. Configuration menu
    Copy the full SHA
    dad5df0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4c3be3b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0fc389d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    367905c View commit details
    Browse the repository at this point in the history
  5. Fix type of directory name

    RemiLehe committed Jul 27, 2020
    Configuration menu
    Copy the full SHA
    6e99ce0 View commit details
    Browse the repository at this point in the history