tree: b255cc8471e4344f5fe47603345e99b177ca72dd [path history] [tgz]
  1. example/
  2. java/
  3. lib/
  4. test/
  5. tool/
  6. .gitignore
  7. analysis_options.yaml
  8. CHANGELOG.md
  9. LICENSE
  10. OWNERS
  11. pubspec.yaml
  12. README.md
pkg/vm_service/README.md

pub package package publisher

A library to access the VM Service Protocol.

Usage

See the example for a simple use of the library's API.

The VM Service Protocol spec can be found at github.com/dart-lang/sdk/runtime/vm/service/service.md.

Features and bugs

Please file feature requests and bugs at the issue tracker.

Running tests locally

  1. Build the SDK

    gclient sync -D && \
    ./tools/build.py -ax64 create_sdk
    

    Note: for a release build, add the -mrelease flag: ./tools/build.py -mrelease -ax64 create_sdk

  2. Run the tests

    • To run all the tests: python3 tools/test.py [ -mdebug | -mrelease ] -ax64 -j4 pkg/vm_service

    • To run a single test: dart pkg/vm_service/test/<test_name>.dart