X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=automated-tests%2FREADME.md;h=e719dda2ff204b146ac4ec1808bb6888a6a34844;hp=ebc9e4fcc69ee1487dfb2924c2fff03972a1972e;hb=6a05ea94f796ee491ba00368afb3487b21903f90;hpb=570bd6238ad29f9e6e25cda9681a2c719c42b819 diff --git a/automated-tests/README.md b/automated-tests/README.md index ebc9e4f..e719dda 100644 --- a/automated-tests/README.md +++ b/automated-tests/README.md @@ -57,19 +57,16 @@ Testing on desktop Building libraries with coverage options ---------------------------------------- -Building dali core: +Building dali toolkit: cd dali-core # the location of your dali-core repository cd build/tizen export CC=gcc export CXX=g++ git clean -fxd . # Only do this in the build folder - autoreconf --install - CXXFLAGS='-g -O0 --coverage' LDFLAGS='--coverage' ./configure --prefix=$DESKTOP_PREFIX --enable-debug + CXXFLAGS='-g -O0 --coverage' LDFLAGS='--coverage' cmake -DCMAKE_INSTALL_PREFIX=$DESKTOP_PREFIX -DCMAKE_BUILD_TYPE=Debug make -j8 install -Repeat for dali-adaptor and toolkit. - Note, you __must__ use a local build and not a distributed build, and you __must__ also build with debug enabled to allow *DALI_ASSERT_DEBUG* to trigger on wrong behaviour ( Which should always be a test case failure! ) Building the tests