Skip to content

Commit dbc2cc8

Browse files
committed
fix ci
1 parent 92ff744 commit dbc2cc8

File tree

4 files changed

+31
-7
lines changed

4 files changed

+31
-7
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ install:
99
- sudo sh ./scripts/fix_ubuntu_llvm.sh
1010
- sudo sh ./scripts/install_gtest.sh
1111
- sudo sh ./scripts/chmod_runnable.sh
12-
- pip install --user codecov
1312

1413
script:
1514
- make test
1615
- python ./EliteTest/full_test/run_test.py
1716

1817
after_success:
19-
- codecov
20-
18+
- bash <(curl -s https://codecov.io/bash)

CHANGELOG.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,34 @@
11
Change Log
22
===============
33

4+
### v0.9.0
5+
6+
添加了GC系统
7+
修复了自定义malloc函数时的类型转换异常
8+
使用PassManager管理多遍语法树扫描
9+
删除了无用的包和函数
10+
11+
------------------------
12+
### v0.8.5
13+
14+
全面支持了更好的调试信息输出
15+
添加对编译器内部过程可视化的支持
16+
更加优雅的打印list表达式
17+
18+
------------------------
419
### v0.8.4
520

621
修复了部分插件系统的bug
722
完成了graphviz图的绘制
823

9-
24+
------------------------
1025
### v0.8.3
1126

1227
大幅修缮了插件系统,修复JIT的bug
1328
新增ICodeGenContext接口
1429
修复了BasicBlock的相关bug
1530

16-
31+
------------------------
1732
### v0.8.2
1833

1934
2016纪念版
@@ -22,6 +37,8 @@ Change Log
2237
添加了扩展包管理器的链接属性支持
2338
添加bdwgc库
2439

40+
41+
------------------------
2542
### v0.8.1 2015-12-26
2643

2744
增加了delete指令

ExIconv/test/EstringTest.cpp

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @Author: sxf
33
* @Date: 2015-12-16 12:02:18
44
* @Last Modified by: sxf
5-
* @Last Modified time: 2015-12-24 22:32:10
5+
* @Last Modified time: 2016-03-05 17:01:18
66
*/
77

88
#include <gtest/gtest.h>
@@ -70,4 +70,13 @@ __ESTRING_TEST__(Enter)
7070
printf("%s\n",substr.to_utf8().c_str());
7171
estring ans = "这里稍稍有点问题so, I";
7272
EXPECT_EQ(substr==ans, true);
73+
}
74+
75+
76+
__ESTRING_TEST__(Construction2AndFind)
77+
{
78+
estring str("hello您好, 这是一段中英混排");
79+
estring estr(str.ec_str());
80+
EXPECT_EQ(str==estr, true);
81+
EXPECT_EQ(str.find('l'), 2);
7382
}

RedApple

0 commit comments

Comments
 (0)