[Tizen] Added some files to fix some unit tests errors.

This commit is contained in:
Sergey Pisarchik 2014-04-27 17:49:29 +03:00 committed by Alex Zolotarev
parent 41e9e7fad7
commit 20d5dacab6
18 changed files with 62 additions and 1 deletions

View file

@ -0,0 +1 @@
some data

View file

@ -0,0 +1 @@
some data

View file

@ -0,0 +1 @@
some data

View file

@ -0,0 +1 @@
../../../data/00_roboto_regular.ttf

View file

@ -0,0 +1 @@
../../../data/01_dejavusans.ttf

View file

@ -0,0 +1 @@
../../../data/02_wqy-microhei.ttf

View file

@ -0,0 +1 @@
../../../data/03_jomolhari-id-a3d.ttf

View file

@ -0,0 +1 @@
../../../data/04_padauk.ttf

View file

@ -0,0 +1 @@
../../../data/05_khmeros.ttf

View file

@ -0,0 +1 @@
../../../data/06_code2000.ttf

View file

@ -0,0 +1 @@
../../../data/World.mwm

View file

@ -0,0 +1 @@
../../../data/WorldCoasts.mwm

View file

@ -0,0 +1 @@
../../../data/minsk-pass.mwm

View file

@ -0,0 +1 @@
../../../data/resources-ldpi

View file

@ -0,0 +1,22 @@
#include "RunMessageLoop.hpp"
#include <FBase.h>
#include <FBaseColArrayList.h>
#include <FApp.h>
using Tizen::Base::Collection::SingleObjectDeleter;
void RunMessageLoop()
{
// AppLog("Starting message loop");
// Tizen::Base::Collection::ArrayList args(Tizen::Base::Collection::SingleObjectDeleter);
// args.Construct();
// Tizen::App::ServiceApp::Execute(Tizen::App::ServiceApp::GetInstance(), &args);
// AppLog("Message loop finished");
}
void EndMessageLoop()
{
// AppLog("Breaking message loop");
// Tizen::App::ServiceApp::GetInstance()->Terminate();
// AppLog("Message loop breaked");
}

View file

@ -0,0 +1,5 @@
#pragma once
void RunMessageLoop();
void EndMessageLoop();

View file

@ -0,0 +1,20 @@
#!/bin/bash
set -x -u
SRC=../../../data
DST=$1
# Remove old links
#rm -rf $DST
#mkdir $DST
files=(about.html resources-ldpi resources-mdpi resources-hdpi resources-xhdpi resources-xxhdpi categories.txt classificator.txt
types.txt fonts_blacklist.txt fonts_whitelist.txt languages.txt unicode_blocks.txt \
drules_proto.bin packed_polygons.bin countries.txt World.mwm WorldCoasts.mwm 00_roboto_regular.ttf 01_dejavusans.ttf 02_wqy-microhei.ttf
03_jomolhari-id-a3d.ttf 04_padauk.ttf 05_khmeros.ttf 06_code2000.ttf
minsk-pass.mwm)
for item in ${files[*]}
do
ln -s $SRC/$item $DST/$item
done

View file

@ -1,2 +1,2 @@
#!/bin/bash
./update_assets_for_version.sh ../RunUnitTests/res
./update_assets_for_unit_tests.sh ../RunUnitTests/res