[external/rk-pcba-test] delete any_test
M Android.mk D any_test.c D any_test.h D et_cc_linux_arm.c D et_cc_linux_arm.h M pre_test.c M res/test_config.cfg Signed-off-by: Firefly <service@t-firefly.com>
This commit is contained in:
2
external/rk-pcba-test/Android.mk
vendored
2
external/rk-pcba-test/Android.mk
vendored
@ -74,11 +74,9 @@ LOCAL_SRC_FILES := \
|
||||
script_parser.c \
|
||||
screen_test.c \
|
||||
rtc_test.c \
|
||||
et_cc_linux_arm.c \
|
||||
key_test.c \
|
||||
wlan_test.c \
|
||||
bt_test.c \
|
||||
any_test.c \
|
||||
sdcard_test.c \
|
||||
udisk_test.c \
|
||||
gsensor_test.c \
|
||||
|
||||
13
external/rk-pcba-test/any_test.c
vendored
13
external/rk-pcba-test/any_test.c
vendored
@ -1,13 +0,0 @@
|
||||
#include "any_test.h"
|
||||
#include "et_cc_linux_arm.h"
|
||||
#include "common.h"
|
||||
|
||||
|
||||
int any_test(void* argv){
|
||||
char szTemp1[255] = "";
|
||||
|
||||
et_sz_repeat(szTemp1,"a",3);
|
||||
|
||||
ui_print_xy_rgba(0,get_cur_print_y(),0,255,0,255,"ANY %s : [OK]\n",szTemp1);
|
||||
return 0;
|
||||
}
|
||||
13
external/rk-pcba-test/any_test.h
vendored
13
external/rk-pcba-test/any_test.h
vendored
@ -1,13 +0,0 @@
|
||||
#ifndef __ANY_TEST_H_
|
||||
#define __ANY_TEST_H_
|
||||
int any_test(void* argv);
|
||||
struct any_msg {
|
||||
int result;
|
||||
int x;
|
||||
int y;
|
||||
int w;
|
||||
int h;
|
||||
char *ssid;
|
||||
};
|
||||
|
||||
#endif //__ANY_TEST_H_
|
||||
10847
external/rk-pcba-test/et_cc_linux_arm.c
vendored
10847
external/rk-pcba-test/et_cc_linux_arm.c
vendored
File diff suppressed because it is too large
Load Diff
1068
external/rk-pcba-test/et_cc_linux_arm.h
vendored
1068
external/rk-pcba-test/et_cc_linux_arm.h
vendored
File diff suppressed because it is too large
Load Diff
20
external/rk-pcba-test/pre_test.c
vendored
20
external/rk-pcba-test/pre_test.c
vendored
@ -24,7 +24,6 @@
|
||||
|
||||
#include "wlan_test.h"
|
||||
#include "bt_test.h"
|
||||
#include "any_test.h" //zhangwei
|
||||
#include "gsensor_test.h"
|
||||
#include "sdcard_test.h"
|
||||
#include "udisk_test.h"
|
||||
@ -161,13 +160,6 @@ char *bt_res;
|
||||
struct bt_msg *bt_msg;
|
||||
int bt_err = -1;
|
||||
|
||||
//zhangwei
|
||||
pthread_t any_tid;
|
||||
char *any_res;
|
||||
struct any_msg *any_msg;
|
||||
int any_err = -1;
|
||||
|
||||
|
||||
pthread_t gsensor_tid;
|
||||
char *gsensor_res;
|
||||
struct gsensor_msg *gsensor_msg;
|
||||
@ -467,18 +459,6 @@ int start_test_pthread(struct testcase_info *tc_info)
|
||||
|
||||
}
|
||||
}
|
||||
//zhangwei
|
||||
else if(!strcmp(tc_info->base_info->name, "any"))
|
||||
{
|
||||
printf("any_test thread created\n");
|
||||
|
||||
err = pthread_create(&any_tid, NULL, any_test,tc_info); //
|
||||
if(err != 0)
|
||||
{
|
||||
printf("create any test thread error: %s/n",strerror(err));
|
||||
|
||||
}
|
||||
}
|
||||
else if(!strcmp(tc_info->base_info->name, "gsensor"))
|
||||
{
|
||||
#ifdef SOFIA3GR_SENSOR_MPU
|
||||
|
||||
7
external/rk-pcba-test/res/test_config.cfg
vendored
7
external/rk-pcba-test/res/test_config.cfg
vendored
@ -123,13 +123,6 @@ category = 0
|
||||
run_type = 1
|
||||
chip_type = "" ; rk903, mt6622, rda587x, rda5990, rtk8723as, rtk8723bs, rtk8723au, rtk8723bu, bk3515
|
||||
|
||||
;//zhangwei
|
||||
[any]
|
||||
display_name= "any"
|
||||
activated = 0
|
||||
program = ""
|
||||
category = 0
|
||||
|
||||
[sdcard]
|
||||
display_name= "SDcard"
|
||||
activated = 1
|
||||
|
||||
Reference in New Issue
Block a user