From 3ffeaba3dd00d41086908f0a4bc4a00e2f604068 Mon Sep 17 00:00:00 2001 From: Paul Wisbey Date: Fri, 12 Dec 2014 14:47:35 +0000 Subject: [PATCH] Fixed some README comments dali_env is in build/scripts, not build. To get a summary.xml for the automated tests use this command: ./execute.sh -s Change-Id: I8ec329c7341e6a88157f053ee6912ae013a4d051 --- README | 4 ++-- automated-tests/README.md | 16 ++++++++++------ 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/README b/README index ff0f989..2062d71 100644 --- a/README +++ b/README @@ -44,13 +44,13 @@ To build for desktop first ensure ALL sources are selected: Then you can create a dali-env folder in your home folder with: - dali-core/build/dali_env -c + dali-core/build/scripts/dali_env -c This will also download any dependencies that the dali repositories require. You can save the environment variables to a file: - dali-env/opt/bin/dali_env -s > setenv + dali-env/opt/bin/scripts/dali_env -s > setenv This process only needs to be done once. diff --git a/automated-tests/README.md b/automated-tests/README.md index 6067b25..2961ae1 100644 --- a/automated-tests/README.md +++ b/automated-tests/README.md @@ -88,17 +88,21 @@ To execute tests, cd into automated-tests and run This will execute dali, dali-unmanaged and dali-internal test sets. Note that the output summary for the first will be printed before running the second. -To execute a subset of tests, you can run individual test sets, e.g. +By default the tests execute in parallel, which is faster but does not produce a single output file (summary.xml). Use this to execute the tests in series: - ./execute.sh dali + ./execute.sh -s -or for finer granularity, specify a test source file: +To see the summary.xml results, execute the tests in series and open as follows: - ./execute.sh dali utc-Dali-Actor.cpp + firefox --new-window summary.xml -To see the results, you can open the summary.xml in firefox. +To see a list of all of the options: - firefox --new-window summary.xml + ./execute.sh -h + +To execute a subset of tests, you can run individual test sets, e.g. + + ./execute.sh dali To get coverage output, run -- 2.7.4