[indexer] Remove android tests

Signed-off-by: Andrei Shkrob <github@shkrob.dev>
This commit is contained in:
Andrei Shkrob 2025-02-22 23:50:16 +01:00 committed by Roman Tsisyk
parent eacb3bbfa2
commit fced7be257
4 changed files with 0 additions and 41 deletions

View file

@ -1,15 +0,0 @@
# @todo(vbykoianko)
# Probably this file shell be generated with a script based on .pro.
# If you do this take into acount:
# - the order of libs is important. It solves some linking problems;
# - there are additional libs here (android_native_app_glue and zlib);
LOCAL_PATH := $(call my-dir)
ROOT_PATH := ../..
include ../../android/UnitTests/jni/AndroidBeginning.mk
LOCAL_MODULE := indexer_tests
LOCAL_STATIC_LIBRARIES := succinct android_native_app_glue indexer platform geometry coding base protobuf opening_hours minizip zlib
include ../../android/UnitTests/jni/AndroidEnding.mk

View file

@ -1 +0,0 @@
../../../android/UnitTests/jni/Application.mk

View file

@ -1,15 +0,0 @@
#include "./test.hpp"
#include "android/UnitTests/jni/mock.hpp"
extern int main(int argc, char * argv[]);
namespace indexer_tests
{
void test(android_app * state)
{
Initialize(state);
main(0, nullptr);
}
}

View file

@ -1,10 +0,0 @@
// @todo(vbykoianko) files test.hpp and test.cpp should be generated with a script based on
// tests_list.sh file or *.pro files
#pragma once
struct android_app;
namespace indexer_tests
{
void test(android_app * state);
}