Giter Club home page Giter Club logo

kourt's Introduction

Setup Development Environment

  1. Install Python 3.8 or higher
  2. Create and activate virtualenv
    python -m venv .venv
    source .venv/bin/activate
  3. Install dependencies
    pip install -r requirements.txt

Run tests

To run Python tests, simply run

python -m pytest

To execute runner unit-tests, see instructions in runner build instructions

kourt's People

Contributors

lfyuomr-gylo avatar

kourt's Issues

Support x86

Both runner and agent should operate correctly on x86 architecture.

Make FunctionalTest.ThereShouldBeNoSurplusOpenFileDescriptorsInExecutedProgram to pass when executed via ctest

Problem

Caused by: #6

In FunctionalTest.ThereShouldBeNoSurplusOpenFileDescriptorsInExecutedProgram it's asserted that if a program that prints all its open file descriptors is executed under runner, it should print only 0, 1 and 2 for stdin, stdout and stderr respectively.

This test passes successfully when executed directrly via GTest. Unfortunately, if it's executed via ctest or make test, it fails with the following error:

Expected equality of these values:
  actual_file_descriptors
    Which is: { "3", "2", "1", "0" }
  expected_file_descriptors
    Which is: { "2", "1", "0" }

It seems that ctest opens additional file descriptor for its internal purposes, and that causes the test to fail.

Possible Solutions

Force ctest not to open that file descriptor.

If it's possible to force ctest to behave transparently, that should be done.

Expect the same open file descriptors as before launching runner

Instead of hard-coding 0, 1 and 2 we may discover open file descriptors just before launching runner, the same as it's done by the program executed under runner. This would allow to avoid any dependency on test execution context, but it would require some boilerplate to be written =(

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.