Code Monkey home page Code Monkey logo

Comments (4)

evandrocoan avatar evandrocoan commented on July 26, 2024 1

I managed to make it not exit the terminal run running it in a subshell:

  1. (source tests.sh; runTests;)
  2. https://stackoverflow.com/questions/52063180/bash-source-a-file-that-has-an-exit-command-at-the-end

But running it like this, it does not find any tests and it throws an error:

$ (source tests.sh; runTests;)
grep: bash: No such file or directory

Ran 0 tests.

OK

If I edit the example to:

#!/bin/bash

runTests() {
    source shUnit2
}

testEquality() {
    assertEquals 1 1
}

runTests

And call it like this (bash timer_calculator.sh;) everything works fine:

$ (bash timer_calculator.sh;)
testEquality

Ran 1 test.

OK

from shunit2.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 26, 2024

Original comment by [email protected] on 15 Mar 2011 at 2:10

  • Added labels: Priority-High
  • Removed labels: Priority-Medium

from shunit2.

evandrocoan avatar evandrocoan commented on July 26, 2024

Any update?

from shunit2.

evandrocoan avatar evandrocoan commented on July 26, 2024

Small example to reproduce it:

tests.sh

#!/bin/bash

runTests() {
    source shUnit2
}

testEquality() {
    assertEquals 1 1
}

Now open a terminal and run:

  1. source tests.sh; runTests;

from shunit2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.